Skip to content

Releases: foxythemes/jquery-niftymodals

v1.3.2

05 Dec 01:45
Compare
Choose a tag to compare

Fixed close modal on click outside [b06fb50]

v1.3.1

21 Nov 21:40
Compare
Choose a tag to compare

Fixed: niftyModals effects stop working well since second try [e8e30b1]

v1.3.0

01 Nov 04:24
Compare
Choose a tag to compare

Changelog

Fixed #2: Vertical scroll on small resolutions

v1.2.0

25 Jul 00:01
Compare
Choose a tag to compare

Changelog

  • Updated readme docs (43ba3b9)
  • Added bootstrap modal styling option (c6272ea)
  • New less folder distribution (4bd08a9)
  • Added less prefix variable (4bd08a9)
  • Added setDefaults & getDefaults methods ( 4542272)
  • Removed unnecessary modal options (5109293)
  • Renamed md-dialog class by md-container (79318d0)

v1.1.1

29 Sep 23:53
Compare
Choose a tag to compare

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

28 Sep 22:55
Compare
Choose a tag to compare

Rewrite all the original plugin.