forked from 0x2620/pandora
handle old and new embed urls
This commit is contained in:
parent
34c0e98798
commit
7841572a20
1 changed files with 19 additions and 11 deletions
|
@ -30,21 +30,21 @@ appPanel
|
|||
});
|
||||
} catch(e) {}
|
||||
};
|
||||
function getLocalStorage(key) {
|
||||
//fails if localStorage does not exist or
|
||||
//if third party cookies are disabled
|
||||
try {
|
||||
return localStorage[key];
|
||||
} catch(e) {}
|
||||
}
|
||||
|
||||
// handle old embed and print URLs
|
||||
document.location.hash = document.location.hash.replace(
|
||||
/^#(embed|print)=true(&)?/,
|
||||
function() {
|
||||
return '#' + arguments[1] + (arguments[2] ? '?' : '');
|
||||
}
|
||||
);
|
||||
|
||||
var animationInterval,
|
||||
enableDebugMode = getLocalStorage('pandora.enableDebugMode'),
|
||||
enableEventLogging = getLocalStorage('pandora.enableEventLogging'),
|
||||
isEmbed = /^#\?/.test(document.location.hash)
|
||||
&& /embed=true/.test(document.location.hash),
|
||||
isEmbed = /^#embed(\?.*?)?$/.test(document.location.hash),
|
||||
isMSIE = /MSIE/.test(navigator.userAgent),
|
||||
isPrint = /^#\?/.test(document.location.hash)
|
||||
&& /print=true/.test(document.location.hash),
|
||||
isPrint = /^#print(\?.*?)?$/.test(document.location.hash),
|
||||
legacyThemes = {classic: 'oxlight', modern: 'oxdark'},
|
||||
theme = getLocalStorage('Ox.theme')
|
||||
&& JSON.parse(localStorage['Ox.theme']) || 'oxmedium';
|
||||
|
@ -58,6 +58,14 @@ appPanel
|
|||
});
|
||||
});
|
||||
|
||||
function getLocalStorage(key) {
|
||||
// fails if localStorage does not exist or if third party cookies are
|
||||
// disabled
|
||||
try {
|
||||
return localStorage[key];
|
||||
} catch(e) {}
|
||||
}
|
||||
|
||||
function getPandoraVersion() {
|
||||
var i, path, scripts = document.getElementsByTagName('script');
|
||||
for (i = 0;i < scripts.length; i++) {
|
||||
|
|
Loading…
Reference in a new issue