diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-10-25 01:07:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 01:07:51 +0200 |
commit | 1978867a11a9baf1ec50555264e65bcfd679c7e8 (patch) | |
tree | 6a41c13f05e5ebc4cb32250669e5a66f8f3fe52b /apps/files/templates/list.php | |
parent | 5d84daa167ca7d631175f54fc949d3f78e854978 (diff) | |
parent | 065ab6bfff47b4e869b76dacf3b077fd0aff8ad5 (diff) | |
download | nextcloud-server-1978867a11a9baf1ec50555264e65bcfd679c7e8.tar.gz nextcloud-server-1978867a11a9baf1ec50555264e65bcfd679c7e8.zip |
Merge pull request #6709 from nextcloud/show-checkbox-where-the-favourite-icon-is-now
Show checkbox where the favourite icon is now
Diffstat (limited to 'apps/files/templates/list.php')
-rw-r--r-- | apps/files/templates/list.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 761a67be6a2..f980081336f 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -41,12 +41,14 @@ <table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="32" data-preview-y="32"> <thead> <tr> + <th id="headerSelection" class="hidden column-selection"> + <input type="checkbox" id="select_all_files" class="select-all checkbox"/> + <label for="select_all_files"> + <span class="hidden-visually"><?php p($l->t('Select all'))?></span> + </label> + </th> <th id='headerName' class="hidden column-name"> <div id="headerName-container"> - <input type="checkbox" id="select_all_files" class="select-all checkbox"/> - <label for="select_all_files"> - <span class="hidden-visually"><?php p($l->t('Select all'))?></span> - </label> <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> <span id="selectedActionsList" class="selectedActions"> <a href="" class="copy-move"> |