mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
15 lines
456 B
JavaScript
15 lines
456 B
JavaScript
define(['jQuery'], function ($) {
|
|
|
|
// TODO: This needs to be deprecated, but it's used heavily
|
|
$.fn.checked = function (value) {
|
|
if (value === true || value === false) {
|
|
// Set the value of the checkbox
|
|
return $(this).each(function () {
|
|
this.checked = value;
|
|
});
|
|
} else {
|
|
// Return check state
|
|
return this.length && this[0].checked;
|
|
}
|
|
};
|
|
}); |