diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-22 15:28:48 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-22 15:28:48 +0200 |
commit | fa725fba7362734d6f9fdd5acb6b5fe4f1aff0ca (patch) | |
tree | afad34c640ccfb3f89fcb25e2ca375c8a0773a2a /apps/files/js/filelist.js | |
parent | 762e7c3dd98790cecd99b98e3ecb9e488458a302 (diff) | |
download | nextcloud-server-fa725fba7362734d6f9fdd5acb6b5fe4f1aff0ca.tar.gz nextcloud-server-fa725fba7362734d6f9fdd5acb6b5fe4f1aff0ca.zip |
Properly show sidebar for trash and sharing sections
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 2af5be73d96..151c70bfce1 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -305,7 +305,7 @@ permissions: OC.PERMISSION_READ, actionHandler: function(fileName, context) { self._updateDetailsView(fileName); - OC.Apps.showAppSidebar(); + OC.Apps.showAppSidebar(self._detailsView.$el); } }); } @@ -380,7 +380,7 @@ if (tabId) { this._detailsView.selectTab(tabId); } - OC.Apps.showAppSidebar(); + OC.Apps.showAppSidebar(this._detailsView.$el); }, /** |