Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 8ef2cfc

Browse files
committed
ENH: refs #0296. Fixing the error message and reducing the limit to 100.
1 parent 6f3b086 commit 8ef2cfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/public/js/jquery/jquery.fileupload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@
695695
return;
696696
}
697697
var i;
698-
if(files.length > 200 && !confirm("You selected a large number of files ("+files.length+"), do you want to process? (Your browser may become unstable)"))
698+
if(files.length > 100 && !confirm("You selected a large number of files ("+files.length+"), are you sure you want to proceed? (Your browser may become unstable)"))
699699
{
700700
return;
701701
}

0 commit comments

Comments
 (0)