This commit is contained in:
Cayo Puigdefabregas 2022-06-08 10:55:52 +02:00
commit 2eab043f3c
2 changed files with 6 additions and 6 deletions

View File

@ -251,9 +251,9 @@ function select_shift() {
}
if (e.shiftKey) {
var start = chkboxes.index(this);
var end = chkboxes.index(lastChecked);
chkboxes.slice(Math.min(start, end), Math.max(start, end) + 1).prop('checked', lastChecked.checked);
const start = chkboxes.index(this);
const end = chkboxes.index(lastChecked);
chkboxes.slice(Math.min(start, end), Math.max(start, end) + 1).prop("checked", lastChecked.checked);
}
lastChecked = this;

View File

@ -240,10 +240,10 @@ function select_shift() {
}
if (e.shiftKey) {
var start = chkboxes.index(this);
var end = chkboxes.index(lastChecked);
const start = chkboxes.index(this);
const end = chkboxes.index(lastChecked);
chkboxes.slice(Math.min(start,end), Math.max(start,end)+ 1).prop('checked', lastChecked.checked);
chkboxes.slice(Math.min(start,end), Math.max(start,end)+ 1).prop("checked", lastChecked.checked);
}
lastChecked = this;