diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-24 15:31:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-24 15:31:23 +0200 |
commit | 37782b1084275d54474700e4ae7863b18e23dc04 (patch) | |
tree | 9481ad7bf07ae049a77dd95a0b09e43a7fb63c59 /apps/files_trashbin | |
parent | 2ec5d2a6ded8096431978638013df4ae5d711cb3 (diff) | |
parent | ede6472e52ab019c377640eb37ca3499d51ad8be (diff) | |
download | nextcloud-server-37782b1084275d54474700e4ae7863b18e23dc04.tar.gz nextcloud-server-37782b1084275d54474700e4ae7863b18e23dc04.zip |
Merge pull request #11573 from nextcloud/gridview-table
Files grid view
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>' + |