From 50740476cba517aab54e869a94139ac51e03679f Mon Sep 17 00:00:00 2001 From: rolux Date: Thu, 21 Feb 2013 16:06:49 +0000 Subject: [PATCH] fix isEmbedURL --- static/js/pandora/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/utils.js b/static/js/pandora/utils.js index c7447e74..b7b135f0 100644 --- a/static/js/pandora/utils.js +++ b/static/js/pandora/utils.js @@ -1022,7 +1022,7 @@ pandora.isClipView = function(view, item) { pandora.isEmbedURL = function(url) { var hash = Ox.parseURL(url).hash; return hash.substr(0, 2) == '#?' - && Ox.unserialize(hash.substr(2)).embed === true + && Ox.unserialize(hash.substr(2), true).embed === true }; pandora.logEvent = function(data, event, element) {