Releases: foxythemes/jquery-niftymodals
Releases · foxythemes/jquery-niftymodals
v1.3.2
v1.3.1
v1.3.0
v1.2.0
Changelog
v1.1.1
Added buttons callback option:
$("#modal-id").niftyModal({
buttons:[
{
class: 'btn-ok',
callback: function( btn, modal, event){
alert("Everything is ok!");
}
},
{
class: 'btn-cancel',
callback: function( btn, modal, event){
alert("You can cancel the modal close event returning false");
return false;
}
}
]
});
v1.1.0
Rewrite all the original plugin.