Commit 6635352b by vietdo

#19072【Web 1.6.5】カスタムログが出力されない

parent 67406f56
...@@ -2375,10 +2375,15 @@ COMMON.SetStartLog = function(strContentId) { ...@@ -2375,10 +2375,15 @@ COMMON.SetStartLog = function(strContentId) {
log.longitude = ClientData.longitude(); log.longitude = ClientData.longitude();
// PageLog 1ページ目セット(1レコードは必須) // PageLog 1ページ目セット(1レコードは必須)
var pageLog = new PageLogEntity(); if(!CONTENTVIEW.isMediaAndHTMLContent() && CONTENTVIEW_GENERAL.contentType != COMMON.ContentTypeKeys.Type_Image
pageLog.contentid = strContentId; && CONTENTVIEW_GENERAL.contentType != COMMON.ContentTypeKeys.Type_Others
log.pageLogArray.push(pageLog); && CONTENTVIEW_GENERAL.contentType != COMMON.ContentTypeKeys.Type_Enquete
&& CONTENTVIEW_GENERAL.contentType != COMMON.ContentTypeKeys.Type_Exam
){
var pageLog = new PageLogEntity();
pageLog.contentid = strContentId;
log.pageLogArray.push(pageLog);
}
// Add to storage // Add to storage
arrContentLogs.push(log); arrContentLogs.push(log);
} }
......
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