bug 2971: Fixed leak by removing drop shadow instead of hiding it.
authorStephen Edwards <sedwards@alloycomputing.com>
Thu, 19 Feb 2009 20:55:43 +0000 (15:55 -0500)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 4 Mar 2009 11:47:38 +0000 (12:47 +0100)
Changed blanket "hide()" of all drop shadows to "removeShadow()" of
the specific one for the cart list.

koha-tmpl/opac-tmpl/prog/en/js/basket.js

index 3c3bbcd..5c5f87e 100644 (file)
@@ -420,7 +420,7 @@ function showCart(){
 }
 
 function hideCart(){
-                $(".dropShadow").hide();
+                $("#cartDetails").removeShadow();
                 $("#cartDetails").fadeOut("fast");
 }