diff options
author | Tomasz Grobelny <tomasz@grobelny.net> | 2019-01-13 17:15:43 +0100 |
---|---|---|
committer | Tomasz Grobelny <tomasz@grobelny.net> | 2019-01-24 22:04:52 +0100 |
commit | 907deab278d1c89784e26aa46fb0ff471ab04546 (patch) | |
tree | 3e54e547f158280cf1d576e87e5220e16c166ab9 /apps/files/js/app.js | |
parent | 54093e2bd6af535e4a70f986f83398b852d49174 (diff) | |
download | nextcloud-server-907deab278d1c89784e26aa46fb0ff471ab04546.tar.gz nextcloud-server-907deab278d1c89784e26aa46fb0ff471ab04546.zip |
Add more accessible method of selecting file ranges
Signed-off-by: Tomasz Grobelny <tomasz@grobelny.net>
Diffstat (limited to 'apps/files/js/app.js')
-rw-r--r-- | apps/files/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/app.js b/apps/files/js/app.js index c7393b871b8..4597dc9529a 100644 --- a/apps/files/js/app.js +++ b/apps/files/js/app.js @@ -100,11 +100,12 @@ displayName: t('files', 'Download'), iconClass: 'icon-download', }, + OCA.Files.FileList.MultiSelectMenuActions.ToggleSelectionModeAction, { name: 'delete', displayName: t('files', 'Delete'), iconClass: 'icon-delete', - } + }, ], sorting: { mode: $('#defaultFileSorting').val(), |