diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-14 17:20:51 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-16 07:23:28 +0200 |
commit | e90065881d47a64b6c376208ece208932711c765 (patch) | |
tree | 7bbd578263150f5d64f11fdc74da6bb838763c0c /apps/files | |
parent | 8194d092e71b1c44a441dddc64b7e7533adbbfb9 (diff) | |
download | nextcloud-server-e90065881d47a64b6c376208ece208932711c765.tar.gz nextcloud-server-e90065881d47a64b6c376208ece208932711c765.zip |
Bring back the share icon and update its status
Display share icon in file list row.
Update share icon status when the sharing state changed.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 194c658e3a1..699df691bbc 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -368,6 +368,20 @@ }, /** + * Displays the details view for the given file and + * selects the given tab + * + * @param {string} fileName file name for which to show details + * @param {string} [tabId] optional tab id to select + */ + showDetailsView: function(fileName, tabId) { + this._updateDetailsView(fileName); + if (tabId) { + this._detailsView.selectTab(tabId); + } + }, + + /** * Update the details view to display the given file * * @param {string} fileName file name from the current list |