Merge pull request #2011 from sbwalker/dev

changed IsModule property name to ES6Module for clarity
This commit is contained in:
Shaun Walker
2022-02-20 08:42:34 -05:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@ -232,7 +232,7 @@ Oqtane.Interop = {
if (path === scripts[s].href && scripts[s].crossorigin !== '') {
element.crossOrigin = scripts[s].crossorigin;
}
if (path === scripts[s].href && scripts[s].ismodule === true) {
if (path === scripts[s].href && scripts[s].es6module === true) {
element.type = "module";
}
}