Open agavazov opened 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(); } });
Would be nice if you close the 'messi' when press esc key or click on the modal area.
After _this.modal =.......... add this code