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/recentlist.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/recentlist.php')
-rw-r--r-- | apps/files/templates/recentlist.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/files/templates/recentlist.php b/apps/files/templates/recentlist.php index 6c271a07f5f..cfdb95c80a0 100644 --- a/apps/files/templates/recentlist.php +++ b/apps/files/templates/recentlist.php @@ -28,10 +28,12 @@ <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"> - <span><?php p($l->t('Delete')) ?></span> - <span class="icon icon-delete"></span> - </a></span> + <span class="selectedActions"> + <a href="" class="delete-selected"> + <span class="icon icon-delete"></span> + <span><?php p($l->t('Delete')) ?></span> + </a> + </span> </th> </tr> </thead> |