This commit is contained in:
the-djmaze 2022-10-02 15:19:23 +02:00
parent e623351d24
commit 23bbd10b9a
5 changed files with 25 additions and 29 deletions

View file

@ -18,6 +18,7 @@ const
script.onload = () => resolve();
script.onerror = () => reject(new Error('Failed loading ' + src));
script.src = src;
// script.async = true;
doc.head.append(script);
});
};