Commit 56378060 by Masaru Abe

#46120 コンテンツ閲覧からホーム戻るとシステムエラーが表示される

parent 7c3c49fd
...@@ -6292,7 +6292,7 @@ CONTENTVIEW.receivePanoLog = function(e) { ...@@ -6292,7 +6292,7 @@ CONTENTVIEW.receivePanoLog = function(e) {
var log = JSON.parse(e.data); var log = JSON.parse(e.data);
if(log.hasOwnProperty('scheme')){ if(log.hasOwnProperty('scheme')){
CONTENTVIEW.panoLog(log, log.scheme); CONTENTVIEW.panoLog(log, log.scheme);
}else{ } else if (log.hasOwnProperty('contentId')){
CONTENTVIEW.panoContentLink(log.contentId, log.page); CONTENTVIEW.panoContentLink(log.contentId, log.page);
} }
} catch(err) { } catch(err) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment