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