feat(event): Shift delete with no confirm
parent
e45e798c3f
commit
e0dd6ccca2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue