Files
EasySoft-ZenTaoPMS/module/project/js/managerepo.js
T

8 lines
167 B
JavaScript

$(function()
{
$('#reposBox input:checkbox').change(function()
{
$(this).closest('.repo').toggleClass('checked', $(this).prop('checked'));
});
});