Files
EasySoft-ZenTaoPMS/module/project/js/task.js
T
2013-02-27 06:05:03 +00:00

23 lines
542 B
JavaScript

$(function()
{
setOuterBox();
if(browseType == 'bysearch') ajaxGetSearchForm();
$('.iframe').colorbox({width:900, height:500, iframe:true, transition:'none', onCleanup:function(){parent.location.href=parent.location.href;}});
});
function showProject()
{
$('#sidebar').hide();
$('#project').show();
$('#project-divider').show();
$.cookie('projectBar', 'show');
}
function hideProject()
{
$('#sidebar').show();
$('#project').hide();
$('#project-divider').hide();
$.cookie('projectBar', 'hide');
}