Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

[stable26] Replace "Unselect" with "Unselect all" in right click menu #171

Merged
merged 2 commits into from
Jul 6, 2023
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
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