Keep the hash in the URL while the pad is loading
parent
deddc80270
commit
83c35543b9
|
@ -142,6 +142,12 @@ define([
|
|||
driveEvents: cfg.driveEvents,
|
||||
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) {
|
||||
if (!Utils.Hash.isValidHref(window.location.href)) {
|
||||
|
|
Loading…
Reference in New Issue