diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-01-30 10:21:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 10:21:23 +0100 |
commit | 53fd4997cc4abfbff35276e7b02be1eeca068a41 (patch) | |
tree | 0acb97cc0eac3e4a800b458c92ef80f235a8df8e /apps/files/js/app.js | |
parent | ecc8cccc4257580b0867000509bef0b22cec84f4 (diff) | |
parent | 907deab278d1c89784e26aa46fb0ff471ab04546 (diff) | |
download | nextcloud-server-53fd4997cc4abfbff35276e7b02be1eeca068a41.tar.gz nextcloud-server-53fd4997cc4abfbff35276e7b02be1eeca068a41.zip |
Merge pull request #12364 from tomasz-grobelny/file_range_select
Ability to select file ranges with mouse or touchscreen
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(), |