From 38eccd12b385ac4eb2f5f7fdb01359fec7ade67c 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. Content-Type: text/plain; charset="utf-8" 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. --- .../prog/en/modules/admin/aqbudgets.tt | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) 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 12a70bc..7fa91f7 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"}); }); }); //]]> -- 1.7.5.4