Closed
Description
SystemJS no longer work in IE11. In version 6.1.0 the following was introduced to dist/system.js and dist/s.js
function loadScriptModules() {
document.querySelectorAll('script[type=systemjs-module]').forEach(function (script) {
if (script.src) {
System.import(script.src.slice(0, 7) === 'import:' ? script.src.slice(7) : resolveUrl(script.src, baseUrl));
}
});
}
Problem is that IE11 do not support NodeList.forEach.
Maybe the Polyfill section in README.md should be updated with something along the lines of: https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill
Metadata
Metadata
Assignees
Labels
No labels
Activity
jonbjk commentedon Sep 22, 2019
I just saw that the problem is solved in: #2033