mirror of
https://gitlab.com/MrFry/moodle-test-userscript
synced 2025-04-01 20:22:48 +02:00
Made the script start loading before the site is loaded
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
// @match https://qmining.frylabs.net/*
|
||||
// @match http://qmining.frylabs.net/*
|
||||
// @noframes
|
||||
// @run-at document-start
|
||||
// @grant GM_getResourceText
|
||||
// @grant GM_info
|
||||
// @grant GM_getValue
|
||||
@@ -762,7 +763,12 @@
|
||||
console.time('main')
|
||||
timerStarted = true
|
||||
|
||||
Init()
|
||||
if(document.readyState === 'loading') {
|
||||
document.addEventListener('DOMContentLoaded', Init)
|
||||
}
|
||||
else {
|
||||
Init()
|
||||
}
|
||||
}
|
||||
|
||||
function AfterLoad () {
|
||||
|
Reference in New Issue
Block a user