Commit c24693d5 by Masaru Abe

テスト対応

parent e8a27166
......@@ -289,6 +289,9 @@ CONTENTVIEW_FILESYSTEM.showVideoObjectCache = function(x, y, width, height, src,
xhr.onreadystatechange = function(){
if (this.readyState == 4 && this.status == 200){
var size = xhr.getResponseHeader('Content-Length')
console.log("size:" + size);
CONTENTVIEW_FILESYSTEM.isXhrBusy = false;
$('#divImageLoading').css('display', 'none');
......
......@@ -978,7 +978,7 @@ CONTENTVIEW_GETDATA.getPageIndexJson = function(pos) {
}
node.id = dataContent[i].ID;
node.Value = dataContent[i].destPageNumber;
AddChidrenNode(node, dataContent);
CONTENTVIEW.AddChidrenNode(node, dataContent);
arrData.push(node);
}
......
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