{Boolean}
Description: Gets or sets a value indicating whether the dialog is resizable.
Default: false
false
alertify.confirm('Resizable: true').set('resizable', true);
You can use the .setting() method to set multiple values at once, Also works as a getter. Or use .get() and .set() aliases.
.setting()
.get()
.set()
//get the closable setting value. var closable = alertify.alert().setting('closable'); //grab the dialog instance using its parameter-less constructor then set multiple settings at once. alertify.alert() .setting({ 'label':'Agree', 'message': 'This dialog is : ' + (closable ? ' ' : ' not ') + 'closable.' , 'onok': function(){ alertify.success('Great');} }).show();