zentaopms/module/kanban/js/createlane.js
2023-05-16 10:47:08 +08:00

10 lines
195 B
JavaScript

$(document).ready(function()
{
initColorPicker();
$('input[name=mode]').change(function()
{
$('#otherLane').parents('tr').toggle($(this).val() == 'sameAsOther');
});
})