You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.
I would expect that this loader executes script myScript.js as if it was included with <script src="myScript.js">. This is not the case.
The following statement var myVar = {} will not add myVar as global (in contrast to how <script src="myScript.js"> behaves) . So in the html page: console.log(myVar) will print undefined.
The text was updated successfully, but these errors were encountered:
I would expect that this loader executes script
myScript.js
as if it was included with<script src="myScript.js">
. This is not the case.The following statement
var myVar = {}
will not add myVar as global (in contrast to how<script src="myScript.js">
behaves) . So in the html page:console.log(myVar)
will print undefined.The text was updated successfully, but these errors were encountered: