A prompt dialog is often used if you want the user to input a value.
When a prompt dialog pops up, the user will have to click either "OK" or "Cancel" to proceed after entering an input value.
All of AlertifyJS animation/transition effects are disabled due to user preference that the system minimizes the amount of animation or motion it uses. See prefers-reduced-motionCSS media feature.
restore
(
)
chainable
Description: Restores the maximized dialog.
Parameters: none
var div = document.createElement('div');
div.innerHTML = 'This will be resored in 3 seconds';
//show maximized dialogvar prompt = alertify.prompt(div).maximize();
//restore the dialog after 3 secondsvar i = 3;
var interval = setInterval(function(){if(--i == 0){
clearInterval(interval);
//restore the dialog
prompt.restore().set('message','Dialog restored.');
}else{
div.innerHTML = 'This will be resored in ' + i + ' seconds.';
}
}, 1000);