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

26 lines
559 B
JavaScript

$(document).ready(function()
{
if(mode == 'edit')
{
$('tr.edit').show();
$('tr.view').hide();
}
else
{
$('tr.edit').hide();
$('tr.view').show();
}
$('.singleEdit').click(function()
{
if($('tr.edit').is(':visible')) return false;
$(this).parents('tr').next('tr.edit').show();
$(this).parents('tr').next('tr.edit').children('td.singleSave').show();
$(this).parents('tr').hide();
})
/* expand active tree. */
$('.tree li.active .hitarea').click();
})