Skip to content

Commit

Permalink
Re-enable hiding of growler on clicking anywhere.
Browse files Browse the repository at this point in the history
Got lost along the way.
  • Loading branch information
yunosh committed Apr 14, 2014
1 parent b2bf29b commit 5cfd859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Core/js/growler.js
Expand Up @@ -111,8 +111,8 @@
padding: '10px',
zIndex: 50000
}).hide();
this.growler.on('click', 'DIV.GrowlerNoticeExit', function(e, elt) {
removeNotice(elt.up('DIV.GrowlerNotice'));
this.growler.on('click', 'DIV.GrowlerNotice', function(e, elt) {
removeNotice(elt);
});

if (this.opts.log) {
Expand Down

0 comments on commit 5cfd859

Please sign in to comment.