JangoSteve / remotipart

Rails jQuery file uploads via standard Rails "remote: true" forms.
http://os.alfajango.com/remotipart
Other
1k stars 215 forks source link

Fix multi file fields disappear bug when error #172

Closed znz closed 7 years ago

znz commented 7 years ago

I met bug using multi file fields with remotipart. Example application is https://github.com/znz/upload-files-test .

I investigated the bug, markers.splice(i, 1); in markers.each makes iterating with [post_attachment, post_attachment2, post_attachment3], [post_attachment2, post_attachment3], [post_attachment2]. So I think splice should be after each.

znz commented 7 years ago

178 fixed this issue too.