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
Fix file list selectors
Signed-off-by: Vincent Petry <[email protected]>
  • Loading branch information
PVince81 committed Sep 13, 2022
commit 5d31490e198388d2e5b5c544c0f22aba302e8563
4 changes: 2 additions & 2 deletions js/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

var appName = RightClick.appName;

new RightClick.Menu($('tbody[id=fileList]'), function (event, context, delimiter) {
new RightClick.Menu($('tbody[class=files-fileList]'), function (event, context, delimiter) {
var options = new RightClick.Options();
var currentFile = $(event.target).closest('tr');
var selectedActions = '.selectedActions .menu-center li';
Expand Down Expand Up @@ -116,7 +116,7 @@
}, 100);

return options;
}, $('#app-content-files #fileList'), function () {
}, $('#app-content-files .files-fileList'), function () {
$('.filesSelectMenu').css('visibility', 'visible');
});
})(window, jQuery, RightClick);