Skip to content

Commit

Permalink
Merge pull request #137 from KevinHanson/feature/uploadsize
Browse files Browse the repository at this point in the history
addressing issue #136 to increase the file upload max size to 3gb inst…
  • Loading branch information
nrejackufl committed Apr 13, 2016
2 parents 14c3a3e + a42a5b9 commit d04a4fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/redidropper/static/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var Utils = (function() {
simultaneousUploads: 4,
testChunks: false,
throttleProgressCallbacks: 1,
maxFileSize: 1 * 1024 * 1024 * 1024 // 1 GB max
maxFileSize: 3 * 1024 * 1024 * 1024 // 3 GB max
});
}

Expand Down

0 comments on commit d04a4fe

Please sign in to comment.