Releases: foxythemes/jquery-niftymodals
Releases · foxythemes/jquery-niftymodals
Release list
v1.3.2
v1.3.1
Fixed: niftyModals effects stop working well since second try [e8e30b1]
v1.3.0
Changelog
Fixed #2: Vertical scroll on small resolutions
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;
}
}
]
});