Skip to content

IE11 broken #2034

Closed
Closed
@jonbjk

Description

@jonbjk

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

Activity

jonbjk

jonbjk commented on Sep 22, 2019

@jonbjk
Author

I just saw that the problem is solved in: #2033

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      IE11 broken · Issue #2034 · systemjs/systemjs