Commit c15ac38 1 parent 13643a2 commit c15ac38 Copy full SHA for c15ac38
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ $(function(){
30
30
var fileinfo = $ ( ".fileinfo" ) ;
31
31
var filesize = data . files [ 0 ] . size ;
32
32
33
- if ( filesize > ( 50 * 1024 * 1024 ) )
33
+ if ( filesize > ( 100 * 1024 * 1024 ) )
34
34
{
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." ) ;
36
36
$ ( "#upload_element" ) . replaceWith ( $ ( "#upload_element" ) . clone ( true ) ) ;
37
37
return ;
38
38
}
@@ -70,9 +70,9 @@ $(function(){
70
70
var fileinfo = $ ( ".fileinfo" ) ;
71
71
var filesize = this . files [ 0 ] . size ;
72
72
73
- if ( filesize > ( 50 * 1024 * 1024 ) )
73
+ if ( filesize > ( 100 * 1024 * 1024 ) )
74
74
{
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." ) ;
76
76
$ ( "#upload_element" ) . replaceWith ( $ ( "#upload_element" ) . clone ( true ) ) ;
77
77
return ;
78
78
}
You can’t perform that action at this time.
0 commit comments