Commit a3771c39 by Masaru Abe

ファンクション閉じ忘れ対応

parent 3302bf0e
......@@ -75,7 +75,7 @@ CONTENTVIEW_FILESYSTEM.saveFile = function(contentId, fileName, data) {
//var bb = new BlobBuilder(); // Note: window.WebKitBlobBuilder in Chrome 12.
//bb.append(data);
//fileWriter.write(bb.getBlob('text/plain'));
}
};
);
},
CONTENTVIEW_FILESYSTEM.errorHandler
......@@ -172,7 +172,7 @@ CONTENTVIEW_FILESYSTEM.checkUpdate = function(contentId, data, func) {
};
var blobData = new Blob([window.JSON.stringify(data)], {type:"text/plain"});
fileWriter.write(blobData);
}
};
);
},
CONTENTVIEW_FILESYSTEM.errorHandler
......@@ -230,7 +230,7 @@ CONTENTVIEW_FILESYSTEM.checkUpdate = function(contentId, data, func) {
var blobData = new Blob([window.JSON.stringify(data)], {type:"text/plain"});
fileWriter.write(blobData);
}
};
);
},
CONTENTVIEW_FILESYSTEM.errorHandler
......
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