mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
074346f6ce
refs #6039, closes #6047, closes #6048 - delete old/unused fixtures file - add failing tests for #6047 & #6048 - redirect to sign-in if we get a 401 when making an API request - fix incorrect `this.notifications` call in tag controller - raise `authorizationFailed` action in application route's `sessionInvalidated` hook so that it can be handled by leaf routes (fixes re-auth modal display) - close "saving failed" alert when successfully re-authenticated - adds a "window-proxy" util so that we can override `window.*` operations in tests - fix `gh-selectize` attempting to register event handlers when the component has already been destroyed
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
export default {
|
|
changeLocation: function (url) {
|
|
window.location = url;
|
|
},
|
|
|
|
replaceLocation: function (url) {
|
|
window.location.replace(url);
|
|
}
|
|
};
|