URL parser: add option to parse URL, but not set state

This commit is contained in:
rolux 2013-02-21 18:44:12 +05:30
parent c3d621350c
commit 00fee0f55d

View file

@ -344,12 +344,18 @@ pandora.URL = (function() {
}; };
// on page load, this sets the state from the URL // on page load, this sets the state from the URL
that.parse = function(callback) { that.parse = function(set, callback) {
if (arguments.length == 1) {
callback = arguments[0];
} else {
set = set === false ? false : true;
}
if (document.location.pathname.slice(0, 4) == 'url=') { if (document.location.pathname.slice(0, 4) == 'url=') {
document.location.href = decodeURI(document.location.pathname.slice(4)); document.location.href = decodeURI(document.location.pathname.slice(4));
} else { } else {
self.URL.parse(function(state) { self.URL.parse(function(state) {
setState(state, callback); // setState -> UI.set -> URL.update // setState -> UI.set -> URL.update
set ? setState(state, callback) : callback(state);
}); });
} }
return that; return that;