audio.ended

Path: rsConf.cb.audio.ended

Default: None

Description: Fires when the player has finished the playback of an entire audio file. The "this" keyword will refer to the container of the currently active player.

Example:

window.rsConf = {
    cb: {
        audio: {
            ended: function () {
                doSomething();
            }
        }
    }
};