tors / jquery-fileupload-rails

jQuery File Upload integrated for Rails
669 stars 254 forks source link

broken down in the latest version of Chrome #15

Closed HungYuHei closed 12 years ago

HungYuHei commented 12 years ago

Everything works fine before I have my Chrome upgraded to version 22.0.1229.79

ollnixon commented 12 years ago

I think this is linked to the issue here: https://github.com/blueimp/jQuery-File-Upload/issues/1724. It seems that if you update jQuery-File-Upload to the latest version (currently 5.17.2), the issue will be fixed. I can't confirm this but can check later today.

ollnixon commented 12 years ago

I can confirm that the released gem 0.3.4 doesn't work in Chrome 22.0 but the latest committed code here does. Is there any chance of releasing the latest code as an updated gem? I've also got a fork that is updated to the latest jquery-file-upload. If you are interested, I will issue a pull request.

In the mean-time, people can work around it with: gem "jquery-fileupload-rails", :git => "git://github.com/tors/jquery-fileupload-rails.git"

waynepan commented 12 years ago

@ollnixon thanks! Small typo in your workaround. I think you mean

gem "jquery-fileupload-rails", :git => "git://github.com/ollnixon/jquery-fileupload-rails.git"

ollnixon commented 12 years ago

The head of your code works fine (it's the published gem version that doesn't) so the work around can use your repo. Mine just uses an even newer version 5.17 vs 5.16.

HungYuHei commented 12 years ago

Upgrading gem to 0.3.4 fixes this issue.