* Fix bug#14580
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
$(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();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -20,3 +20,16 @@ function confirmBatchDelete(actionLink)
|
||||
if(confirm(batchDelete)) setFormAction(actionLink);
|
||||
return false;
|
||||
}
|
||||
|
||||
$(function()
|
||||
{
|
||||
/* 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();
|
||||
}
|
||||
});
|
||||
@@ -14,6 +14,16 @@ $(function()
|
||||
adjustTableFooter();
|
||||
$('body').on('click', '#toggleFold', adjustTableFooter);
|
||||
$('body').on('click', '.icon.icon-angle-double-right', adjustTableFooter);
|
||||
|
||||
/* 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();
|
||||
}
|
||||
});
|
||||
|
||||
$('#module' + moduleID).closest('li').addClass('active');
|
||||
|
||||
@@ -104,6 +104,16 @@ $(function()
|
||||
{
|
||||
window.location.reload();
|
||||
})
|
||||
|
||||
/* 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();
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
|
||||
@@ -14,4 +14,14 @@ function confirmBatchDelete(actionLink)
|
||||
$(function()
|
||||
{
|
||||
if($('#caseList thead th.c-title').width() < 150) $('#caseList 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();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user