ui.dialog.open

Path: rsConf.cb.ui.dialog.open

Default: None

Description: Fires after a dialog have been displayed on the screen. The "this" keyword will refer to the container of the currently active player.

Example:

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