afterShow
fires after a popup is shown
afterShow: (node: HTMLElement) => void;
Parameters:
node: HTMLElement
- the container a popup is placed in
Example
popup.events.on("afterShow", function(element){
console.log("A popup is shown");
});
Related sample: Popup. Events