Files
EasySoft-ZenTaoPMS/module/project/js/task.js
2013-01-22 05:48:34 +00:00

30 lines
550 B
JavaScript

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