Files
EasySoft-ZenTaoPMS/module/bug/js/browse.js
T
azhi e4d27b3a67 * code for task#1678.
* remove the byModule link.
2013-08-08 09:56:43 +08:00

14 lines
485 B
JavaScript

$(document).ready(function()
{
$("a.customFields").colorbox({width:540, height:340, iframe:true, transition:'none'});
$('#' + browseType + 'Tab').addClass('active');
$('#module' + moduleID).addClass('active');
if(browseType == 'bysearch') ajaxGetSearchForm();
/* If customed and the browse is ie6, remove the ie6.css. */
if(customed && $.browser.msie && Math.floor(parseInt($.browser.version)) == 6)
{
$("#browsecss").attr('href', '');
}
});