You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
After minification using webpack uglify plugin (minimize: true only) error is thrown, without minification it works fine.
Minified code:
if (R) {
d(R);
if ("undefined" != typeof e["fetch"]) {
var L = void 0;
try {
L = e["fetch"]()
} catch (e) {
L = e["fetch"]("about:blank") //error is here
}
L.then(function () {
return null
}, function () {
return null
});
if (L.constructor != R && L.constructor != F) d(L.constructor)
}
}
Looks like minification bug, but i guess we could rename e to error in catch and be safe.
zone.js version:
0.7.6After minification using webpack uglify plugin (
minimize: trueonly) error is thrown, without minification it works fine.Minified code:
Looks like minification bug, but i guess we could rename
etoerrorin catch and be safe.Adding
screw_ie8: truefixes this problem also.