diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-26 12:21:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 12:21:13 +0200 |
commit | b4353c46519ffc44c30eb258210911a044bbca41 (patch) | |
tree | a1e4c6299c8814139f5c4d0d27b782b22835e9f1 /apps/files/templates/simplelist.php | |
parent | 7615536977eda7f3bda5c29eaa780a323c97afc7 (diff) | |
parent | bb2557c38974bea38dcc48185723b33781412cbd (diff) | |
download | nextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.tar.gz nextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.zip |
Merge pull request #33320 from nextcloud/bugfix/noid/remove-files-duplicate-dom-ids
Replace files app ids to classes
Diffstat (limited to 'apps/files/templates/simplelist.php')
-rw-r--r-- | apps/files/templates/simplelist.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/files/templates/simplelist.php b/apps/files/templates/simplelist.php index 917fc307ff8..45c6f812501 100644 --- a/apps/files/templates/simplelist.php +++ b/apps/files/templates/simplelist.php @@ -1,6 +1,6 @@ <div id='notification'></div> -<div id="emptycontent" class="hidden"> +<div class="emptyfilelist emptycontent hidden"> <div class="icon-starred"></div> <h2><?php p($l->t('No favorites yet')); ?></h2> <p><?php p($l->t('Files and folders you mark as favorite will show up here')); ?></p> @@ -13,18 +13,18 @@ <h2><?php p($l->t('No entries found in this folder')); ?></h2> <p></p> </div> -<table id="filestable" class="list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>"> +<table class="files-filestable list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>"> <thead> <tr> - <th id='headerName' class="hidden column-name"> - <div id="headerName-container"> + <th class="hidden column-name"> + <div class="column-name-container"> <a class="name sort columntitle" onclick="event.preventDefault()" href="#" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a> </div> </th> - <th id="headerSize" class="hidden column-size"> + <th class="hidden column-size"> <a class="size sort columntitle" onclick="event.preventDefault()" href="#" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a> </th> - <th id="headerDate" class="hidden column-mtime"> + <th class="hidden column-mtime"> <a id="modified" class="columntitle" onclick="event.preventDefault()" href="#" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a> <span class="selectedActions"> <a onclick="event.preventDefault()" href="#" class="delete-selected"> @@ -36,7 +36,7 @@ </th> </tr> </thead> - <tbody id="fileList"> + <tbody class="files-fileList"> </tbody> <tfoot> </tfoot> |