Skip to content

Commit 418dc2e

Browse files
nielsheerenFoxandxss
authored andcommitted
Fix systemjs-angular-loader.js for <=IE10 (angular#443)
"let" is ES2015 and therefore not supported by<=IE10
1 parent 16232d7 commit 418dc2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systemjs-angular-loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports.translate = function(load){
1919

2020
load.source = load.source
2121
.replace(templateUrlRegex, function(match, quote, url){
22-
let resolvedUrl = url;
22+
var resolvedUrl = url;
2323

2424
if (url.startsWith('.')) {
2525
resolvedUrl = basePath + url.substr(1);

0 commit comments

Comments
 (0)