Valums-File-Uploader / file-uploader

Multiple file upload plugin for HTML forms. User-friendly progress-bar + uploads via drag-and-drop. Coded in Javascript + AJAX, not Flash. Server-side PHP, Java, & ColdFusion examples included.
http://valums-file-uploader.github.com/file-uploader/
Other
320 stars 141 forks source link

.indexOf issue in ie8 #22

Open hoanghiep opened 12 years ago

hoanghiep commented 12 years ago

here is function to fix this issue

[].indexOf || (Array.prototype.indexOf = function (v, n) { n = (n == null) ? 0 : n; var m = this.length; for (var i = n; i < m; i++) if (this[i] == v) return i; return -1; });

karimeri commented 11 years ago

Thanks , it works for me :)))))))