* Finish task #73291.

This commit is contained in:
tianshujie
2022-11-08 14:33:53 +08:00
parent e593c657d4
commit 51a786f73d
6 changed files with 91 additions and 97 deletions
+3 -1
View File
@@ -4,10 +4,12 @@ $(function()
{
var editProject = $(this).is(':checked') ? 1 : 0;
$.cookie('editProject', editProject, {expires:config.cookieLife, path:config.webRoot});
showEditCheckbox(editProject);
dtableWithZentao.render({checkable: editProject});
});
if($.cookie('editProject') == 1) $('input#editProject1').prop('checked', 'true');
dtableWithZentao.render({checkable: $('input#editProject1').is(':checked')});
if($('input#editProject1').prop('checked'))
{
setTimeout(function()