12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
$(function()
|
|
{
|
|
$('input[name^="involved"]').click(function()
|
|
{
|
|
var involved = $(this).is(':checked') ? 1 : 0;
|
|
$.cookie('involved', involved, {expires:config.cookieLife, path:config.webRoot});
|
|
window.location.reload();
|
|
});
|
|
});
|
|
|
|
$(".tree #program" + programID).parent('li').addClass('active');
|