Skip to content

Commit

Permalink
6.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Sep 12, 2020
1 parent c2c9b25 commit 64d99d2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
SystemJS 6.6.1
* IE11 support bug fix (https://github.com/systemjs/systemjs/pull/2247)

SystemJS 6.6.0
* Fix autoimport dynamic import conflicts (https://github.com/systemjs/systemjs/pull/2245)
* Set "type": "script" in package.json (https://github.com/systemjs/systemjs/pull/2246)
Expand Down
4 changes: 2 additions & 2 deletions dist/s.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SJS 6.6.0
* SJS 6.6.1
* Minimal SystemJS Build
*/
(function () {
Expand Down Expand Up @@ -565,7 +565,7 @@
// Only add cross origin for actual cross origin
// this is because Safari triggers for all
// - https://bugs.webkit.org/show_bug.cgi?id=171566
if (!url.startsWith(baseOrigin + '/'))
if (url.indexOf(baseOrigin + '/'))
script.crossOrigin = 'anonymous';
var integrity = importMap.integrity[url];
if (integrity)
Expand Down
2 changes: 1 addition & 1 deletion dist/s.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/s.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/system.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SystemJS 6.6.0
* SystemJS 6.6.1
*/
(function () {
function errMsg(errCode, msg) {
Expand Down Expand Up @@ -573,7 +573,7 @@
// Only add cross origin for actual cross origin
// this is because Safari triggers for all
// - https://bugs.webkit.org/show_bug.cgi?id=171566
if (!url.startsWith(baseOrigin + '/'))
if (url.indexOf(baseOrigin + '/'))
script.crossOrigin = 'anonymous';
var integrity = importMap.integrity[url];
if (integrity)
Expand Down

0 comments on commit 64d99d2

Please sign in to comment.