-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
change file problem #649
Comments
Insert these lines into your code for undestanding uploader.onWhenAddingFileFailed = function(item /*{File|FileLikeObject}*/, filter, options) {
console.info('onWhenAddingFileFailed', item, filter, options);
};
uploader.onAfterAddingFile = function(fileItem) {
console.info('onAfterAddingFile', fileItem);
}; |
I had the same problem with single file uploading.
|
I had the same problem and tried the solution by Velius5. Unfortunately it didn't work with canvas image preview so what I ended up doing was removing the queueLimit filter and adding this event callback: uploader.onAfterAddingFile = function(item, filter, options) {
if (uploader.queue.length > 1) {
uploader.queue.splice(0, 1);
}
}; |
@Velius5 I just use same solution. |
@CodemonkeyTim Nice job! |
@Velius5 i try your solution but i got rollback in my server file_fingerprint is NULL |
follow step:
Is it a bug? or not please give me a solution.
The text was updated successfully, but these errors were encountered: