From c2be08f695a1a28c51276e233ac030fc5337484c Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Fri, 20 Jan 2012 11:23:04 -0500 Subject: [PATCH] Bug 7114: Fixes the Funds' page display after the Filter link is clicked. On the funds page there is a Fund Filters form and a menu underneath this form. When the form is hidden the contents of the page shift to the left overlapping the menu. The menu underneath the fund filters form must have been a later edition. This patch removes the line of javascript that shifts the contents of the page after the form is hidden. Signed-off-by: Katrin Fischer Patch fixes the broken Layout when clicking on 'Filters'. I am a bit confused by the link. I think it should toggle between different descriptions and perhaps even hide all of the left navigation. This way the funds table would get more room for display. Signed-off-by: Paul Poulain --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index 12a70bc857..7fa91f77fd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -133,7 +133,6 @@ $("#filterbutton").click(function() { $("#fundfilters").slideToggle(0); - $("#content").css({ marginLeft: $("#content").css("marginLeft") == "4em"?"15em":"4em"}); }); }); //]]> -- 2.39.2