Skip to content

Commit

Permalink
disable search script async loading
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys committed Dec 23, 2020
1 parent b90fbbe commit 4babb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4babb90

Please sign in to comment.