-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onQueueComplete #7
Comments
Despite rather modest JS knowledge, I found the cause here: Line 814: if ($('#' + settings.queueID).find('.uploadifive-queue-item').not('.error, .complete').size() === 0) However, size( ) has been removed in jQuery 3.0, so length must be used. Cheers |
That's not exactly the problem. Well it is if you use newer jQuery (see #13) of course, but there is another problem here. This line 814 is reached BEFORE it calls Most likely this call of
|
For me, it was due to the jquery issue of - size() is not a function. So I added following code before uploadifive code |
Hi,
I just migrated from uploadify to uploadifive to get rid of the flash usage, and everything works fine except from the event 'onQueueComplete' :-/
Of course I checked the code intended for the event; it works fine with other events like 'onUploadComplete'. There must be a bug... somewhere.
Regards
The text was updated successfully, but these errors were encountered: