8000 Fixed: "File Upload Broken in IE9, v2.3.1" (#633) · nervgh/angular-file-upload@9ed1ab4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ed1ab4

Browse files
committed
Fixed: "File Upload Broken in IE9, v2.3.1" (#633)
1 parent c191050 commit 9ed1ab4

File tree

7 files changed

+1167
-1283
lines changed

7 files changed

+1167
-1283
lines changed

.babelrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"presets": [
3+
"es2015"
4+
],
5+
"plugins": [
6+
[
7+
"transform-es2015-classes",
8+
{
9+
"loose": true
10+
}
11+
]
12+
]
13+
}

WebpackConfig.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ class WebpackConfig {
3535
// https://github.com/babel/babel-loader
3636
{
3737
test: /\.js$/,
38-
loader: 'babel',
39-
query: {
40-
presets: ['es2015']
41-
}
38+
loader: 'babel'
4239
},
4340
// https://github.com/webpack/json-loader
4441
{test: /\.json$/, loader: 'json'},

0 commit comments

Comments
 (0)
0