You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
567 B

3 years ago
  1. (function () {
  2. $.holdReady(true);
  3. var script = window.document.createElement("script");
  4. script.type = "text/javascript";
  5. script.async = true;
  6. script.onload = script.onreadystatechange = function (e, isAbort) {
  7. if (isAbort || !script.readyState || /loaded|complete/.test(script.readyState)) {
  8. script.onload = script.onreadystatechange = null;
  9. script = undefined;
  10. }
  11. if (!isAbort) { $.holdReady(false); }
  12. }
  13. script.src = "data/document.js";
  14. window.document.head.appendChild(script);
  15. })();