blueberryapps / redux-file-upload

Redux-friendly file upload made easy
MIT License
65 stars 17 forks source link

Fileapi error #9

Closed anupvarghese closed 8 years ago

anupvarghese commented 8 years ago

FileUpload.react.js:119 Uncaught TypeError: Cannot read property 'event' of null

I am getting the above error.

It is coming from

componentDidMount() {
    FileAPI.event.on(this.refs.fileInput, 'change', this.handleFileChange);

Looks like FileAPI object is not created. Any idea?

anupvarghese commented 8 years ago

Issue is because of webpack define plugin

added below, to fix the issue

'process.env.IS_BROWSER': true,