Skip to content

Commit c15ac38

Browse files
committed
Whoops, forgot to update the scripts.
1 parent 13643a2 commit c15ac38

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

public_html/static/js/script.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ $(function(){
3030
var fileinfo = $(".fileinfo");
3131
var filesize = data.files[0].size;
3232

33-
if(filesize > (50 * 1024 * 1024))
33+
if(filesize > (100 * 1024 * 1024))
3434
{
35-
alert("You can currently only upload PDFs up to 50MB in size.");
35+
alert("You can currently only upload PDFs up to 100MB in size.");
3636
$("#upload_element").replaceWith($("#upload_element").clone(true));
3737
return;
3838
}
@@ -70,9 +70,9 @@ $(function(){
7070
var fileinfo = $(".fileinfo");
7171
var filesize = this.files[0].size;
7272

73-
if(filesize > (50 * 1024 * 1024))
73+
if(filesize > (100 * 1024 * 1024))
7474
{
75-
alert("You can currently only upload PDFs up to 50MB in size.");
75+
alert("You can currently only upload PDFs up to 100MB in size.");
7676
$("#upload_element").replaceWith($("#upload_element").clone(true));
7777
return;
7878
}

0 commit comments

Comments
 (0)