mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
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.targety()
|
|
});
|
|
};
|
|
})(jQuery);
|
|
|
|
function createGuid() {
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
|
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
|
return v.toString(16);
|
|
});
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
while($('#logo span').height() > $('#logo').height()) {
|
|
$('#logo span').css('font-size', (parseInt($('#logo span').css('font-size')) - 1) + "px" );
|
|
};
|
|
}); |