fix(babel): replace window with global

I'm pretty sure that here should be `global` instead of `window`.
Does `window` work for you? I have a ReferenceError.
This commit is contained in:
eden lane 2016-04-19 11:58:30 +03:00
parent ef12125190
commit 4ddcb20807

View File

@ -1,4 +1,4 @@
if (!window._babelPolyfill) {
if (!global._babelPolyfill) {
require('babel-polyfill');
}
import API from './functions/api';