ui.dialog.close
Path: rsConf.cb.ui.dialog.close
Default: None
Description: Fires after a dialog has been closed. The "this" keyword will refer to the container of the currently active player.
Example:
window.rsConf = {
cb: {
ui: {
dialog: {
close: function () {
doSomething();
}
}
}
}
};