diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-06-07 10:30:27 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-06-07 10:34:19 +0200 |
commit | 92dd05d06ddeb2a9434df6038c432e6b167c1c99 (patch) | |
tree | ecb93138c1dd0ab0c1fcf2682a6eae600a4bbca9 /client/components/main/popup.js | |
parent | 12919cbfc6c3fd0793624776b3afb70e3a0cdd1a (diff) | |
download | wekan-92dd05d06ddeb2a9434df6038c432e6b167c1c99.tar.gz wekan-92dd05d06ddeb2a9434df6038c432e6b167c1c99.tar.bz2 wekan-92dd05d06ddeb2a9434df6038c432e6b167c1c99.zip |
Click on the page to escape the last action
This is a generalization of what we had for closing a popup by
clicking outside of it. It now works for inlinedForms and detailsPane
as well.
Diffstat (limited to 'client/components/main/popup.js')
-rw-r--r-- | client/components/main/popup.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/client/components/main/popup.js b/client/components/main/popup.js index 8672d08a..8cb12dd0 100644 --- a/client/components/main/popup.js +++ b/client/components/main/popup.js @@ -18,11 +18,6 @@ function whichTransitionEvent() { var transitionEvent = whichTransitionEvent(); Popup.template.events({ - click: function(evt) { - if (evt.originalEvent) { - evt.originalEvent.clickInPopup = true; - } - }, 'click .js-back-view': function() { Popup.back(); }, |