2023-05-16 10:50:42 +08:00

11 lines
363 B
JavaScript

$('#conditions input:checkbox').change(function()
{
var conditions = '';
$('#conditions input:checkbox').each(function(i)
{
if($(this).prop('checked')) conditions += $(this).val() + ',';
})
conditions = conditions.substring(0, conditions.length - 1);
location.href = createLink('report', 'roadmap', 'conditions=' + conditions);
})