diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-08-25 11:29:35 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-25 11:29:35 +0200 |
commit | 5e6fa3c9389fcfa3af682f12fe0f54918ae6c85d (patch) | |
tree | 9ad639b3bc6d0a4ac9d9b1207e4ad2ad1f500212 /apps/files_trashbin/js/filelist.js | |
parent | a86602a1575d829a64588b35eb073484ec9543db (diff) | |
download | nextcloud-server-5e6fa3c9389fcfa3af682f12fe0f54918ae6c85d.tar.gz nextcloud-server-5e6fa3c9389fcfa3af682f12fe0f54918ae6c85d.zip |
Fix trashbin sidebar
Do not display size as it is not available.
Use display name instead of name to remove the ".d123456" suffix.
Diffstat (limited to 'apps/files_trashbin/js/filelist.js')
-rw-r--r-- | apps/files_trashbin/js/filelist.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index 71b63721897..febe3a45be3 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -122,6 +122,16 @@ return OC.linkTo('files', 'index.php')+"?view=trashbin&dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); }, + elementToFile: function($el) { + var fileInfo = OCA.Files.FileList.prototype.elementToFile($el); + if (this.getCurrentDirectory() === '/') { + fileInfo.displayName = getDeletedFileName(fileInfo.name); + } + // no size available + delete fileInfo.size; + return fileInfo; + }, + updateEmptyContent: function(){ var exists = this.$fileList.find('tr:first').exists(); this.$el.find('#emptycontent').toggleClass('hidden', exists); |