ui.popup.close
Path: rsConf.cb.ui.popup.close
Default: None
Description: Fires after the text-selection pop-up menu have been closed, either manually or by timeout. The “this” keyword will refer to the menu container element.
Example:
window.rsConf = {
cb: {
ui: {
popup: {
close: function () {
doSomething();
}
}
}
}
};