Assess API Events
test:panel:hide
Fires when any modal dialog is hidden.
You would want to be notified about this event firing, because you may want to resume an animation in your application, for example.
Examples
itemsApp.on('test:panel:hide', function () {
console.log('This code executes when any modal dialog is hidden.');
});
Related articles
- The
test:panel:show
event, the event that occurs when any modal dialog is shown. - The
dialogs()
public method which allows you to show or hide any modal dialog in the assessment.