diff --git a/static/js/pandora/URL.js b/static/js/pandora/URL.js index 2e5806cb7..cda04fa7c 100644 --- a/static/js/pandora/URL.js +++ b/static/js/pandora/URL.js @@ -8,7 +8,7 @@ pandora.URL = (function() { function getState() { - Ox.Log('', 'GET STATE, UI', pandora.user.ui) + Ox.Log('URL', 'getState:, UI', pandora.user.ui) if (pandora.user.ui.page) { return {page: pandora.user.ui.page}; @@ -132,6 +132,16 @@ pandora.URL = (function() { } } + if (state.hash && state.hash.query) { + state.hash.query.forEach(function(kv) { + try { + set[kv.key] = JSON.parse(kv.value); + } catch(e) { + set[kv.key] = kv.value; + } + }); + } + Ox.Request.cancel(); $('video').each(function() { $(this).trigger('stop');