Merge pull request #100 from nathanmarks/ie11-playground-error

Added babel polyfill to docs to fix ie11 bug
old
Javi Velasco 2015-11-12 16:52:06 +01:00
commit 73df6bb20a
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import './utils/polyfills'; // Import polyfills for IE11
import App from './app';
import AppBar from './app_bar';
import Autocomplete from './autocomplete';

View File

@ -0,0 +1,5 @@
import 'core-js/fn/array/from';
import 'core-js/fn/array/iterator';
import 'core-js/fn/map';
import 'core-js/fn/string/starts-with';
import 'core-js/fn/symbol';

View File

@ -53,6 +53,7 @@
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"core-js": "^1.2.6",
"cpx": "^1.2.1",
"css-loader": "^0.21.0",
"eslint": "^1.7.3",