Zeile 348 | Zeile 348 |
---|
if (event.which == 27 && current.options.escapeClose) current.close(); }); if (this.options.clickClose)
|
if (event.which == 27 && current.options.escapeClose) current.close(); }); if (this.options.clickClose)
|
this.$blocker.click(function(e) {
| this.$blocker.on('click',function(e) {
|
if (e.target==this) $.modal.close(); });
| if (e.target==this) $.modal.close(); });
|
Zeile 562 | Zeile 562 |
---|
return this.each(function() { var popup = new PopupMenu(this, close_in_popupmenu);
|
return this.each(function() { var popup = new PopupMenu(this, close_in_popupmenu);
|
$(this).click(popup.open);
| $(this).on('click',popup.open);
|
}); } })(jQuery);
| }); } })(jQuery);
|