Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Replace "Unselect" with "Unselect all" in right click menu
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge authored and backportbot-nextcloud[bot] committed Jul 6, 2023
commit 3cbe8f83c105d16f45ac582c55e0e23c3a9e3229
4 changes: 2 additions & 2 deletions js/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
if (currentFile.hasClass('selected')) {
menu.find('ul').html('');

addNewOption('Check', 'category-disabled', t(appName, 'Unselect'), function () {
$(currentFile.find('input.selectCheckBox')).click();
addNewOption('Check', 'category-disabled', t(appName, 'Unselect all'), function () {
currentFile.closest('tbody').find('tr input.selectCheckBox:checked').trigger('click')
});

$.each($('.selectedActions:not(.hidden) .menu-center li:not(.hidden)'), function (i, selectedAction) {
Expand Down