ui.stop
Path: rsConf.cb.ui.stop
Default: None
Description: Fires when the user clicks on the stop button. The "this" keyword will refer to the container element of the current player.
Example:
window.rsConf = {
cb: {
ui: {
stop: function() {
doSomething();
}
}
}
};