diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-05-28 16:53:42 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-30 10:06:30 +0200 |
commit | 5e4e7734467a00bd40e3a04d72a5f49f012ced40 (patch) | |
tree | ec6f25bb3f6ad1dc8d62bcea90c528b5a5244dbd /apps/files_sharing/js | |
parent | 66afd1aa3925f31f347edfc5dae7adf7603ba5c6 (diff) | |
download | nextcloud-server-5e4e7734467a00bd40e3a04d72a5f49f012ced40.tar.gz nextcloud-server-5e4e7734467a00bd40e3a04d72a5f49f012ced40.zip |
Removed "Share with" column
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/sharedfilelist.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js index cf5e65528e2..ef1034ecfdc 100644 --- a/apps/files_sharing/js/sharedfilelist.js +++ b/apps/files_sharing/js/sharedfilelist.js @@ -42,9 +42,7 @@ // TODO: hook earlier and render the whole row here var $tr = OCA.Files.FileList.prototype._createRow.apply(this, arguments); $tr.find('.filesize').remove(); - var $sharedWith = $('<td class="sharedWith"></td>') - .text(fileData.counterParts.join(', ')); - $tr.find('td.date').before($sharedWith); + $tr.find('td.date').before($tr.children('td:first')); $tr.find('td.filename input:checkbox').remove(); $tr.attr('data-share-id', _.pluck(fileData.shares, 'id').join(',')); if (this._sharedWithUser) { |