Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.
Merged
Changes from all commits
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
Replace "Unselect" with "Unselect all" in right click menu
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Jul 5, 2023
commit 42c2f9aec5bdfbde495605ca26b2e40aff0c932e
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