diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-08-23 11:04:35 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-08-23 11:12:04 +0200 |
commit | d2af2ed521eb283ef7499789f23cccc4308812fa (patch) | |
tree | 83dea87a338f4b6b4ccc6e7683d925a4653440d9 /client/config | |
parent | 2248671b7c022f889584e0931948fe5fbe4f54a6 (diff) | |
download | wekan-d2af2ed521eb283ef7499789f23cccc4308812fa.tar.gz wekan-d2af2ed521eb283ef7499789f23cccc4308812fa.tar.bz2 wekan-d2af2ed521eb283ef7499789f23cccc4308812fa.zip |
Close the Popup when all escape actions are executed
Diffstat (limited to 'client/config')
-rw-r--r-- | client/config/router.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/config/router.js b/client/config/router.js index e251aea0..4545f220 100644 --- a/client/config/router.js +++ b/client/config/router.js @@ -28,7 +28,7 @@ FlowRouter.route('/b/:boardId/:slug/:cardId', { action: function(params) { Session.set('currentBoard', params.boardId); Session.set('currentCard', params.cardId); - EscapeActions.executeUpTo('popup'); + EscapeActions.executeUpTo('popup-close'); BlazeLayout.render('defaultLayout', { content: 'board' }); } |