changed IsModule property name to ES6Module for clarity

This commit is contained in:
Shaun Walker
2022-02-20 08:53:04 -05:00
parent b68e3cb10f
commit 99986c1b94
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";
}
}