mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
parent
8a8dacb0e4
commit
6de3ef1701
@ -193,7 +193,7 @@
|
|||||||
this.renderItem(item);
|
this.renderItem(item);
|
||||||
},
|
},
|
||||||
clearEverything: function () {
|
clearEverything: function () {
|
||||||
this.$el.find('.js-notification.notification-passive').remove();
|
this.$el.find('.js-notification.notification-passive').parent().remove();
|
||||||
},
|
},
|
||||||
removeItem: function (e) {
|
removeItem: function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@ -217,6 +217,7 @@
|
|||||||
$(this)
|
$(this)
|
||||||
.show()
|
.show()
|
||||||
.css({height: "auto"})
|
.css({height: "auto"})
|
||||||
|
.parent()
|
||||||
.remove();
|
.remove();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
window.location.href = msg.redirect;
|
window.location.href = msg.redirect;
|
||||||
},
|
},
|
||||||
error: function (xhr) {
|
error: function (xhr) {
|
||||||
|
Ghost.notifications.clearEverything();
|
||||||
Ghost.notifications.addItem({
|
Ghost.notifications.addItem({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
||||||
@ -102,6 +103,7 @@
|
|||||||
window.location.href = msg.redirect;
|
window.location.href = msg.redirect;
|
||||||
},
|
},
|
||||||
error: function (xhr) {
|
error: function (xhr) {
|
||||||
|
Ghost.notifications.clearEverything();
|
||||||
Ghost.notifications.addItem({
|
Ghost.notifications.addItem({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
||||||
@ -153,6 +155,7 @@
|
|||||||
window.location.href = msg.redirect;
|
window.location.href = msg.redirect;
|
||||||
},
|
},
|
||||||
error: function (xhr) {
|
error: function (xhr) {
|
||||||
|
Ghost.notifications.clearEverything();
|
||||||
Ghost.notifications.addItem({
|
Ghost.notifications.addItem({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
message: Ghost.Views.Utils.getRequestErrorMessage(xhr),
|
||||||
|
Loading…
Reference in New Issue
Block a user