mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
16 lines
625 B
JavaScript
16 lines
625 B
JavaScript
|
(function ($) {
|
||
|
$.fn.enableCheckboxRangeSelection = function () {
|
||
|
var lastCheckbox = null;
|
||
|
var $spec = this;
|
||
|
$spec.unbind("click.checkboxrange");
|
||
|
$spec.bind("click.checkboxrange", function (e) {
|
||
|
if (lastCheckbox != null && (e.shiftKey || e.metaKey)) {
|
||
|
$spec.slice(
|
||
|
Math.min($spec.index(lastCheckbox), $spec.index(e.target)),
|
||
|
Math.max($spec.index(lastCheckbox), $spec.index(e.target)) + 1
|
||
|
).prop('checked', e.target.checked);
|
||
|
}
|
||
|
lastCheckbox = e.target;
|
||
|
});
|
||
|
};
|
||
|
})(jQuery);
|