dont set empty document.location.hash, causes # to show up in Firefox, fixes #1870
This commit is contained in:
parent
00da62ba17
commit
a7e87647e0
1 changed files with 8 additions and 6 deletions
|
@ -32,12 +32,14 @@ appPanel
|
|||
};
|
||||
|
||||
// handle legacy embed and print URLs
|
||||
document.location.hash = document.location.hash.replace(
|
||||
/^#\?(embed|print)=true(&)?/,
|
||||
function() {
|
||||
return '#' + arguments[1] + (arguments[2] ? '?' : '');
|
||||
}
|
||||
);
|
||||
if ( document.location.hash) {
|
||||
document.location.hash = document.location.hash.replace(
|
||||
/^#\?(embed|print)=true(&)?/,
|
||||
function() {
|
||||
return '#' + arguments[1] + (arguments[2] ? '?' : '');
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
var animationInterval,
|
||||
enableDebugMode = getLocalStorage('pandora.enableDebugMode'),
|
||||
|
|
Loading…
Reference in a new issue