diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-01-07 12:23:29 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-01-07 12:23:29 +0100 |
commit | 3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e (patch) | |
tree | 84485582ac7a7f041381a2440955ebeb96d35da8 /apps/files/js/files.js | |
parent | da442b024c50160be58281975a6fabe2d86a61a7 (diff) | |
download | nextcloud-server-3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e.tar.gz nextcloud-server-3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e.zip |
attach max upload tipsy to div instead of a to fix tooltip not showing due to new z-index
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6d19a341e9e..038660e6e49 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -322,6 +322,7 @@ $(document).ready(function() { if ($.assocArraySize(uploadingFiles[dirName]) == 0) { delete uploadingFiles[dirName]; } + //TODO update file upload size limit var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -375,6 +376,7 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { Files.cancelUpload(this.files[0].name); @@ -407,8 +409,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + //TODO Files.cancelUpload(/*where do we get the filename*/); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); |