jellyfin-web/dashboard-ui/legacy/fnchecked.js

20 lines
542 B
JavaScript
Raw Normal View History

2016-08-20 11:34:30 -07:00
define(['jQuery'], function ($) {
2016-10-22 22:11:46 -07:00
'use strict';
2016-08-20 11:34:30 -07:00
// 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;
}
};
2016-09-11 14:02:32 -07:00
$.fn.checkboxradio = function () {
return this;
};
2016-08-20 11:34:30 -07:00
});