mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
define(['jQuery'], function ($) {
|
|
'use strict';
|
|
|
|
$.fn.buttonEnabled = function (enabled) {
|
|
|
|
return enabled ? this.attr('disabled', '').removeAttr('disabled') : this.attr('disabled', 'disabled');
|
|
};
|
|
}); |