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