diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:50:46 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:50:46 +0200 |
commit | 0a5349eec624eb016ed75a4c35d2fa3ef8b00f16 (patch) | |
tree | fcfe839594d05c01b2cab2cf96838f0730505bf3 /apps/files_trashbin | |
parent | 321d2250d6d7f188175f8f62639358fd8317da57 (diff) | |
parent | 8e84ab8613aa34cce0e33e8408ce89d8abbb5506 (diff) | |
download | nextcloud-server-0a5349eec624eb016ed75a4c35d2fa3ef8b00f16.tar.gz nextcloud-server-0a5349eec624eb016ed75a4c35d2fa3ef8b00f16.zip |
Merge pull request #19647 from owncloud/trashbin-removesidebar
Remove sidebar for trashbin view
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_trashbin/js/app.js b/apps/files_trashbin/js/app.js index 807d5704be1..364b51697bd 100644 --- a/apps/files_trashbin/js/app.js +++ b/apps/files_trashbin/js/app.js @@ -26,7 +26,8 @@ OCA.Trashbin.App = { this.fileList = new OCA.Trashbin.FileList( $('#app-content-trashbin'), { scrollContainer: $('#app-content'), - fileActions: this._createFileActions() + fileActions: this._createFileActions(), + detailsViewEnabled: false } ); }, |