Files
jellyfin-web/src/legacy/fnchecked.js
T
2020-04-05 13:48:10 +02:00

11 lines
312 B
JavaScript

define(["jQuery"], function($) {
"use strict";
$.fn.checked = function(value) {
return !0 === value || !1 === value ? $(this).each(function() {
this.checked = value;
}) : this.length && this[0].checked;
}, $.fn.checkboxradio = function() {
return this;
};
});