diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-03 21:42:24 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:05 +0200 |
commit | 39ff82f70796bff9d2f0321d03213ec3ea9b713f (patch) | |
tree | a4802f4a5136671c51a880a38907ea05d646ca9b /apps/files_trashbin | |
parent | e704899e2229428c7da1a247409794f7462ec34d (diff) | |
download | nextcloud-server-39ff82f70796bff9d2f0321d03213ec3ea9b713f.tar.gz nextcloud-server-39ff82f70796bff9d2f0321d03213ec3ea9b713f.zip |
Use grid view in other file views too
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 2 | ||||
-rw-r--r-- | apps/files_trashbin/tests/js/filelistSpec.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index dd24abb5de1..054ffee6176 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,7 +18,7 @@ <p></p> </div> -<table id="filestable"> +<table id="filestable" class="list-container view-grid"> <thead> <tr> <th id="headerSelection" class="hidden column-selection"> diff --git a/apps/files_trashbin/tests/js/filelistSpec.js b/apps/files_trashbin/tests/js/filelistSpec.js index e650a2f2d28..a56ee987b78 100644 --- a/apps/files_trashbin/tests/js/filelistSpec.js +++ b/apps/files_trashbin/tests/js/filelistSpec.js @@ -48,7 +48,7 @@ describe('OCA.Trashbin.FileList tests', function () { '</div>' + // dummy table // TODO: at some point this will be rendered by the fileList class itself! - '<table id="filestable">' + + '<table id="filestable" class="list-container view-grid">' + '<thead><tr><th id="headerName" class="hidden">' + '<input type="checkbox" id="select_all_trash" class="select-all">' + '<span class="name">Name</span>' + |