Commit 88e024db by Masaru Abe

JS暗号化対応

parent 650a1261
...@@ -133,8 +133,8 @@ CONTENTVIEW_FILESYSTEM.checkUpdate = function(contentId, data, func) { ...@@ -133,8 +133,8 @@ CONTENTVIEW_FILESYSTEM.checkUpdate = function(contentId, data, func) {
//JSONに戻す //JSONに戻す
var jsonObjOld = JSON.parse(e.target.result); var jsonObjOld = JSON.parse(e.target.result);
//配信日時比較 //配信日時比較
console.log("OLD:" + jsonObjOld.contentData.lastDeliveryDate) console.log("OLD:" + jsonObjOld.contentData.lastDeliveryDate);
console.log("NEW:" + data.contentData.lastDeliveryDate) console.log("NEW:" + data.contentData.lastDeliveryDate);
if( jsonObjOld.contentData.lastDeliveryDate != data.contentData.lastDeliveryDate ){ if( jsonObjOld.contentData.lastDeliveryDate != data.contentData.lastDeliveryDate ){
console.log("違う"); console.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