Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-14 13:50:46 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-14 13:50:46 +0300
commit0a5349eec624eb016ed75a4c35d2fa3ef8b00f16 (patch)
treefcfe839594d05c01b2cab2cf96838f0730505bf3 /apps/files_trashbin
parent321d2250d6d7f188175f8f62639358fd8317da57 (diff)
parent8e84ab8613aa34cce0e33e8408ce89d8abbb5506 (diff)
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.js3
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
}
);
},