Files
EasySoft-ZenTaoPMS/module/project/js/task.js
chencongzhi520@gmail.com 7427704392 * finish task#1078.
2013-02-19 07:23:06 +00:00

30 lines
550 B
JavaScript

$(function()
{
if($.cookie('projectBar') == 'hide')
{
$('#project').hide();
setOuterBox();
}
else
{
$('#sidebar').hide();
setOuterBox();
}
if(browseType == 'bysearch') ajaxGetSearchForm();
$('.iframe').colorbox({width:900, height:500, iframe:true});
});
function showProject()
{
$('#sidebar').hide();
$('#project').show();
$.cookie('projectBar', 'show');
}
function hideProject()
{
$('#sidebar').show();
$('#project').hide();
$.cookie('projectBar', 'hide');
}