Files
EasySoft-ZenTaoPMS/module/kanban/js/createlane.js
T
2022-01-13 09:44:07 +08:00

10 lines
195 B
JavaScript

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