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

13 lines
260 B
JavaScript

export default {
changeLocation(url) {
window.location = url;
},
replaceLocation(url) {
window.location.replace(url);
},
replaceState(params, title, url) {
window.history.replaceState(params, title, url);
}
};