mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
Popup.template.events({
|
|
click: function(evt) {
|
|
if (evt.originalEvent) {
|
|
evt.originalEvent.clickInPopup = true;
|
|
}
|
|
},
|
|
'click .js-back-view': function() {
|
|
Popup.back();
|
|
},
|
|
'click .js-close-pop-over': function() {
|
|
Popup.close();
|
|
},
|
|
'click .js-confirm': function() {
|
|
this.__afterConfirmAction.call(this);
|
|
}
|
|
});
|