ui.popup.open

Path: rsConf.cb.ui.popup.open

Default: None

Description: Fires immediately after the text-selection pop-up menu has been displayed. The “this” keyword will refer to the menu container element.

Example:

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