marcosesperon / Messi

A simple message plugin for jQuery
http://marcosesperon.es/apps/messi/
146 stars 135 forks source link

Close with esc key & modal click #24

Open agavazov opened 11 years ago

agavazov commented 11 years ago

Would be nice if you close the 'messi' when press esc key or click on the modal area.

After _this.modal =.......... add this code

_this.modal.bind('click', function() {
  _this.hide();
});

$(document).keypress(function(event) {
  if (event.keyCode == 27) {
    _this.hide();
  }
});