don`t allow upload when not on the upload page.

This commit is contained in:
Erica Wright 2017-07-24 13:01:48 -04:00
parent 62989ee2c9
commit ec7f058afc
1 changed files with 6 additions and 0 deletions

View File

@ -133,6 +133,12 @@ $(document).ready(function() {
// on file upload by browse or drag & drop
function onUpload(event) {
event.preventDefault();
// don't allow upload if not on upload page
if ($('#page-one').attr('hidden')){
return;
}
storage.totalUploads += 1;
let file = '';