Use Popup.back() instead of Popup.close() to get no conflicts if a Popup is opened as "Sub Popup"

- .back() is also .close() if there is no "popup layer" left
This commit is contained in:
Martin Filser 2021-10-21 10:35:16 +02:00
parent a59dfa8fc0
commit b9250e4be4
17 changed files with 82 additions and 82 deletions

View file

@ -34,10 +34,10 @@ Template.memberMenuPopup.helpers({
Template.memberMenuPopup.events({
'click .js-my-cards'() {
Popup.close();
Popup.back();
},
'click .js-due-cards'() {
Popup.close();
Popup.back();
},
'click .js-open-archived-board'() {
Modal.open('archivedBoards');
@ -53,7 +53,7 @@ Template.memberMenuPopup.events({
AccountsTemplates.logout();
},
'click .js-go-setting'() {
Popup.close();
Popup.back();
},
});
@ -155,7 +155,7 @@ Template.editProfilePopup.events({
} else Popup.back();
},
'click #deleteButton': Popup.afterConfirm('userDelete', function() {
Popup.close();
Popup.back();
Users.remove(Meteor.userId());
AccountsTemplates.logout();
}),