jellyfin-web/dashboard-ui/legacy/fnchecked.js
2016-08-20 14:34:30 -04:00

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;
}
};
});