diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-06 06:49:42 -0800 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-06 06:49:42 -0800 |
commit | 1fa1cf46bd02f5a453d491d752828193d463067a (patch) | |
tree | 33b0b13551fa95a2682e17ff2977697cc2cc22a1 /apps/files/js/filelist.js | |
parent | 6b6a46589ef9dbd2646327e85f0e8c78fde302ae (diff) | |
parent | 31181e4348b9af2625cf4d6ad38cf4cd81db3c1f (diff) | |
download | nextcloud-server-1fa1cf46bd02f5a453d491d752828193d463067a.tar.gz nextcloud-server-1fa1cf46bd02f5a453d491d752828193d463067a.zip |
Merge pull request #5711 from owncloud/quota-refreshquotainclientafteroperations
Fixes for "max upload size" value showed in the UI
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3ef3c2c1766..006bd1f4966 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -152,6 +152,9 @@ var FileList={ FileActions.display(tr.find('td.filename'), true); return tr; }, + getCurrentDirectory: function(){ + return $('#dir').val() || '/'; + }, /** * @brief Changes the current directory and reload the file list. * @param targetDir target directory (non URL encoded) @@ -224,6 +227,10 @@ var FileList={ return; } + // TODO: should rather return upload file size through + // the files list ajax call + Files.updateStorageStatistics(true); + if (result.data.permissions) { FileList.setDirectoryPermissions(result.data.permissions); } @@ -554,6 +561,7 @@ var FileList={ checkTrashStatus(); FileList.updateFileSummary(); FileList.updateEmptyContent(); + Files.updateStorageStatistics(); } else { $.each(files,function(index,file) { var deleteAction = $('tr[data-file="'+files[i]+'"]').children("td.date").children(".action.delete"); |