Files
jellyfin-web/src/legacy/fnchecked.js
T
2020-02-22 11:47:03 -05:00

11 lines
308 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
}
});