This commit is contained in:
ayham 2021-12-10 21:55:00 +03:00
parent a218ed48aa
commit 6ea48ddfe1
Signed by: ayham
GPG Key ID: EAB7F5A9DF503678
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
function loadScript(scriptUrl) {
const script = document.createElement('script');
script.src = scriptUrl;
document.body.appendChild(script);
document.head.appendChild(script);
return new Promise((res, rej) => {
script.onload = function() {