ui.pause

Path: rsConf.cb.ui.pause

Default: None

Description: Fires when the user clicks on the pause button. The "this" keyword will refer to the container element of the current player.

Example:

window.rsConf = {
	cb: {
		ui: {
			pause: function() {
				doSomething();
			}
		}
	}
};