disable search script async loading

This commit is contained in:
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

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;