diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-08-25 22:18:43 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-08-25 23:40:57 +0200 |
commit | 60712e1ac4c431f6c7d8c992a6c7e75ac82a3ab7 (patch) | |
tree | 7ad87ed4689280c524487736ee3dd34059b6de6d /client/components/cards | |
parent | 22e854cc30474b13f2981de9a44661b8a7baa5ba (diff) | |
download | wekan-60712e1ac4c431f6c7d8c992a6c7e75ac82a3ab7.tar.gz wekan-60712e1ac4c431f6c7d8c992a6c7e75ac82a3ab7.tar.bz2 wekan-60712e1ac4c431f6c7d8c992a6c7e75ac82a3ab7.zip |
Fix EscapeActions click in handling
Fixes a bug introduced in 07cc454 and one introduced in 22e854c.
Diffstat (limited to 'client/components/cards')
-rw-r--r-- | client/components/cards/details.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/details.js b/client/components/cards/details.js index 7c09ba81..4fa90bf7 100644 --- a/client/components/cards/details.js +++ b/client/components/cards/details.js @@ -118,6 +118,6 @@ Template.cardMorePopup.events({ EscapeActions.register('detailsPane', function() { Utils.goBoardId(Session.get('currentBoard')); }, function() { return ! Session.equals('currentCard', null); }, { - noClickEscapeOn: '.js-card-details' + noClickEscapeOn: '.js-card-details,.board-sidebar,#header' } ); |