Bug 7114: Fixes the Funds' page display after the Filter link is clicked.
authorGarry Collum <gcollum@gmail.com>
Fri, 20 Jan 2012 16:23:04 +0000 (11:23 -0500)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 17 Feb 2012 09:06:51 +0000 (10:06 +0100)
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 <Katrin.Fischer.83@web.de>
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 <paul.poulain@biblibre.com>
koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt

index 12a70bc..7fa91f7 100644 (file)
 
         $("#filterbutton").click(function() {
             $("#fundfilters").slideToggle(0);
-            $("#content").css({ marginLeft:  $("#content").css("marginLeft") == "4em"?"15em":"4em"});
         });
     });
 //]]>