Only left-clicking now activates the selection of an item
This commit is contained in:
parent
a9b794e70c
commit
c71032a707
3 changed files with 10 additions and 8 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -113,6 +113,7 @@ class FileManager {
|
|||
|
||||
selectRow() {
|
||||
$('#file_listing tr').on('mousedown', event => {
|
||||
if (event.which === 1) {
|
||||
if ($(event.target).is('th') || $(event.target).is('input[data-action="selectAll"]')) {
|
||||
new ActionsClass().highlightAll(event);
|
||||
} else if ($(event.target).is('td') || $(event.target).is('input[data-action="addSelection"]')) {
|
||||
|
@ -120,6 +121,7 @@ class FileManager {
|
|||
}
|
||||
|
||||
new ActionsClass().toggleMassActions();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue