summaryrefslogtreecommitdiffstats
path: root/client/components/main/popup.js
blob: e6ce805108b1d0e403ec17fbe003b9827af794a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
  }
});