1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

Fix notification stacking.

fixes #944
This commit is contained in:
Fabian Becker 2013-10-30 01:24:21 +00:00
parent 15f5140ee3
commit c6e3427d03
2 changed files with 5 additions and 1 deletions

View file

@ -193,7 +193,7 @@
this.renderItem(item);
},
clearEverything: function () {
this.$el.find('.js-notification.notification-passive').remove();
this.$el.find('.js-notification.notification-passive').parent().remove();
},
removeItem: function (e) {
e.preventDefault();
@ -217,6 +217,7 @@
$(this)
.show()
.css({height: "auto"})
.parent()
.remove();
});
}

View file

@ -45,6 +45,7 @@
window.location.href = msg.redirect;
},
error: function (xhr) {
Ghost.notifications.clearEverything();
Ghost.notifications.addItem({
type: 'error',
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
@ -102,6 +103,7 @@
window.location.href = msg.redirect;
},
error: function (xhr) {
Ghost.notifications.clearEverything();
Ghost.notifications.addItem({
type: 'error',
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
@ -153,6 +155,7 @@
window.location.href = msg.redirect;
},
error: function (xhr) {
Ghost.notifications.clearEverything();
Ghost.notifications.addItem({
type: 'error',
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),