Merge branch 'develop' of github.com:thecodingmachine/workadventure

This commit is contained in:
_Bastler
2022-01-13 16:56:39 +01:00
14 changed files with 353 additions and 9 deletions
+4 -1
View File
@@ -12,7 +12,10 @@
const script = document.createElement('script');
script.type = "module";
script.src = scriptUrl;
script.type = "module";
if (urlParams.get('moduleMode') === 'true') {
script.type = "module";
}
document.head.append(script);
</script>
</head>