Files
EasySoft-ZenTaoPMS/module/story/js/change.js
T
2018-11-12 11:21:34 +08:00

11 lines
372 B
JavaScript

$(function()
{
$('#needNotReview').on('change', function()
{
$('#assignedTo').attr('disabled', $(this).is(':checked') ? 'disabled' : null).trigger('chosen:updated');
});
$('#needNotReview').change();
if($('.tabs .tab-content .tab-pane.active').children().length == 0) $('.tabs .nav-tabs li.active').css('border-bottom', '1px solid #ccc');
});