Files
EasySoft-ZenTaoPMS/module/bug/js/browse.js
T
2021-09-18 11:01:08 +08:00

15 lines
389 B
JavaScript

$(function()
{
if($('#bugList thead th.c-title').width() < 150) $('#bugList thead th.c-title').width(150);
/* The display of the adjusting sidebarHeader is synchronized with the sidebar. */
$(".sidebar-toggle").click(function()
{
$("#sidebarHeader").toggle("fast");
});
if($("main").is(".hide-sidebar"))
{
$("#sidebarHeader").hide();
}
});