This commit is contained in:
2021-10-19 22:38:41 +08:00
commit 7a8ae0731c
270 changed files with 46330 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
(function () {
$.holdReady(true);
var script = window.document.createElement("script");
script.type = "text/javascript";
script.async = true;
script.onload = script.onreadystatechange = function (e, isAbort) {
if (isAbort || !script.readyState || /loaded|complete/.test(script.readyState)) {
script.onload = script.onreadystatechange = null;
script = undefined;
}
if (!isAbort) { $.holdReady(false); }
}
script.src = "data/document.js";
window.document.head.appendChild(script);
})();