This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.toc { | |
font-size: 14px; | |
position: fixed; | |
top: 0px; | |
left: -330px; | |
width: 400px; | |
height: 100%; | |
overflow-x: scroll; | |
overflow-y: scroll; | |
padding: 0 0 0 100px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ajax = new XMLHttpRequest(); | |
ajax.open("GET",item.url,true); | |
ajax.addEventListener("progress", function(evt){ | |
if (evt.lengthComputable) { | |
var percentComplete = evt.loaded / evt.total; | |
//Do something with download progress | |
console.log("percentComplete " + percentComplete); | |
} | |
}, false); | |
ajax.onreadystatechange = function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ver 1.3 2014-08-12 | |
function AQ_SECAPI_ESCAPE(Url,map){ | |
var tmpArr = new Array; | |
for(var m=0; m<Url.length; m++){ | |
if(Url.charAt(m) == '&'){ | |
var keyLen = [3,4,5,9]; | |
var matchFlag = 0; | |
for(var n in keyLen){ | |
var l = keyLen[n]; | |
if(m+l <= Url.length){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Empty |