ソースを参照

Load using interval

simov 6 年 前
コミット
d49faae0ad
1 ファイル変更6 行追加1 行削除
  1. 6 1
      content/index.js

+ 6 - 1
content/index.js

@@ -191,7 +191,12 @@ if (document.readyState === 'complete') {
   mount()
 }
 else {
-  window.addEventListener('DOMContentLoaded', mount)
+  var timeout = setInterval(() => {
+    if (document.readyState === 'complete') {
+      clearInterval(timeout)
+      mount()
+    }
+  }, 0)
 }
 
 if (state.content.autoreload) {