diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-22 23:53:15 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-22 23:53:15 +0200 |
commit | 9fbd3fa6c14a59dc829a47cd334b9038777105b4 (patch) | |
tree | 81d1bca227e6bbe6c1e519cab3e437fd8a6f2afb /apps/files/js/filelist.js | |
parent | 3bce50f64b856f33396d8681d11cff493c123b75 (diff) | |
parent | fa725fba7362734d6f9fdd5acb6b5fe4f1aff0ca (diff) | |
download | nextcloud-server-9fbd3fa6c14a59dc829a47cd334b9038777105b4.tar.gz nextcloud-server-9fbd3fa6c14a59dc829a47cd334b9038777105b4.zip |
Merge pull request #19270 from owncloud/files-sidebar-fixfortrashandco
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 ece330d41cc..28bac23ecb0 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -306,7 +306,7 @@ permissions: OC.PERMISSION_READ, actionHandler: function(fileName, context) { self._updateDetailsView(fileName); - OC.Apps.showAppSidebar(); + OC.Apps.showAppSidebar(self._detailsView.$el); } }); } @@ -381,7 +381,7 @@ if (tabId) { this._detailsView.selectTab(tabId); } - OC.Apps.showAppSidebar(); + OC.Apps.showAppSidebar(this._detailsView.$el); }, /** |