Files
EasySoft-ZenTaoPMS/module/install/js/license.js
T
2022-07-08 08:28:36 +08:00

9 lines
246 B
JavaScript

$(document).ready(function()
{
$('#agree').change(function()
{
$('.btn-install').attr('disabled', !$(this).prop('checked'));
$('.btn-install').css('pointer-events', $(this).prop('checked') ? 'auto' : 'none');
});
});