fix isEmbedURL
This commit is contained in:
parent
65f04dfdbb
commit
50740476cb
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue