feat(event): Shift delete with no confirm

pull/3685/head
Simpler1 2023-04-07 11:26:32 -04:00
parent e45e798c3f
commit e0dd6ccca2
1 changed files with 6 additions and 1 deletions

View File

@ -381,7 +381,12 @@ function initPage() {
}
evt.preventDefault();
$j('#deleteConfirm').modal('show');
if (evt.shiftKey) {
const selections = getIdSelections();
deleteEvents(selections);
} else {
$j('#deleteConfirm').modal('show');
}
});
// Update table links each time after new data is loaded