You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 230行修改如下,不知道新版本有没有改
// Remove an existing file in the queue
$data.removeExistingFile = function (file) {
for (var key in $data.inputs) {
input = $data.inputs[key];
limit = input.files.length;
/zhao change/
$data.uploads.count--;
/**/
for (var n = 0; n < limit; n++) {
existingFile = input.files[n];
// Check if the filename matches
if (existingFile.name == file.name && !existingFile.complete) {
$data.queue.replaced++;
methods.cancel.call($this, existingFile, true);
}
}
}
}
The text was updated successfully, but these errors were encountered:
line 230行修改如下,不知道新版本有没有改
// Remove an existing file in the queue
$data.removeExistingFile = function (file) {
for (var key in $data.inputs) {
input = $data.inputs[key];
limit = input.files.length;
/zhao change/
$data.uploads.count--;
/**/
for (var n = 0; n < limit; n++) {
existingFile = input.files[n];
// Check if the filename matches
if (existingFile.name == file.name && !existingFile.complete) {
$data.queue.replaced++;
methods.cancel.call($this, existingFile, true);
}
}
}
}
The text was updated successfully, but these errors were encountered: