Keep the hash in the URL while the pad is loading
This commit is contained in:
parent
deddc80270
commit
83c35543b9
@ -142,6 +142,12 @@ define([
|
|||||||
driveEvents: cfg.driveEvents,
|
driveEvents: cfg.driveEvents,
|
||||||
currentPad: currentPad
|
currentPad: currentPad
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (window.history && window.history.replaceState && currentPad.hash) {
|
||||||
|
var nHash = currentPad.hash;
|
||||||
|
if (!/^#/.test(nHash)) { nHash = '#' + nHash; }
|
||||||
|
window.history.replaceState({}, window.document.title, nHash);
|
||||||
|
}
|
||||||
}));
|
}));
|
||||||
}).nThen(function (waitFor) {
|
}).nThen(function (waitFor) {
|
||||||
if (!Utils.Hash.isValidHref(window.location.href)) {
|
if (!Utils.Hash.isValidHref(window.location.href)) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user