ui.progresschanged
Path: rsConf.cb.ui.progresschanged
Default: None
Description: Fires when everytime the progressbar is updated, either because the audio is playing or because the user drag’n’dropped the playhead to a new position. The new value (in percent) is provided as the only parameter.
Example:
window.rsConf = {
cb: {
ui: {
progresschanged: function() {
doSomething();
}
}
}
};