Files
EasySoft-ZenTaoPMS/module/bug/js/browse.js
2021-09-18 14:08:31 +08:00

12 lines
369 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();
});