disable search script async loading

master
Robert Kaussow 2020-12-23 16:58:56 +01:00
parent b90fbbedd2
commit 4babb900e6
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@
function loadScript(src, callback) {
let script = document.createElement('script');
script.defer = true;
script.async = true;
script.async = false;
script.src = src;
script.onload = callback;