audio.nosound
Path: rsConf.cb.audio.nosound
Default: None
Description: Fires when the player for some reason doesn't succeed with playing the audio and instead has to display a link to the audio. The "this" keyword will refer to the container of the currently active player.
Example:
window.rsConf = {
cb: {
audio: {
nosound: function () {
doSomething();
}
}
}
};