ivan-novakov / extjs-upload-widget

File upload widget for ExtJS v4
80 stars 42 forks source link

Uncaught RangeError: Maximum call stack size exceeded #17

Open Ngorror opened 10 years ago

Ngorror commented 10 years ago

I'm using ExtJS 4.2.2 When I click browse button, select a files and click OK I received next error:

Uncaught RangeError: Maximum call stack size exceeded

I saw endless firing of event 'fileselected' in BrowseButton.js row 47

this.fireEvent('fileselected', this, files);

I changed it to

                if (files.length != 0) {
                    this.fireEvent('fileselected', this, files);
                }

and example works

ivan-novakov commented 10 years ago

What browser and what OS do you use?

Ngorror commented 10 years ago

chrome Version 31.0.1650.57 m firefox 25.0.1 windows 7 pro