diff options
author | Abijeet <abijeetpatro@gmail.com> | 2018-06-02 20:45:19 +0530 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-18 07:39:43 +0200 |
commit | 45db89f3e6b7b391db5f9c766f3b3ef8b4e0750a (patch) | |
tree | 18f459ff41135a5b3d0adb1afb797c10a3f3facc /apps/files/templates/simplelist.php | |
parent | 174ba1f0124b9f5999d6f9842259ab1b2b143c5a (diff) | |
download | nextcloud-server-45db89f3e6b7b391db5f9c766f3b3ef8b4e0750a.tar.gz nextcloud-server-45db89f3e6b7b391db5f9c766f3b3ef8b4e0750a.zip |
Added a new action menu in files and trash list.
Uses the new file-multi-select-menu component.
Towards #7647
Signed-off-by: Abijeet <abijeetpatro@gmail.com>
Diffstat (limited to 'apps/files/templates/simplelist.php')
-rw-r--r-- | apps/files/templates/simplelist.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/apps/files/templates/simplelist.php b/apps/files/templates/simplelist.php index 1dc927c9b59..78adb21922f 100644 --- a/apps/files/templates/simplelist.php +++ b/apps/files/templates/simplelist.php @@ -13,7 +13,6 @@ <h2><?php p($l->t('No entries found in this folder')); ?></h2> <p></p> </div> - <table id="filestable"> <thead> <tr> @@ -27,11 +26,13 @@ </th> <th id="headerDate" class="hidden column-mtime"> <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Modified' )); ?></span><span class="sort-indicator"></span></a> - <span class="selectedActions"><a href="" class="delete-selected"> - <?php p($l->t('Delete'))?> - <img class="svg" alt="" - src="<?php print_unescaped(OCP\Template::image_path("core", "actions/delete.svg")); ?>" /> - </a></span> + <span class="selectedActions"> + <a href="" class="delete-selected"> + <img class="svg" alt="" + src="<?php print_unescaped(OCP\Template::image_path("core", "actions/delete.svg")); ?>" /> + <?php p($l->t('Delete'))?> + </a> + </span> </th> </tr> </thead> |