From d9a5c15d54419cf8bc5b38b1025f33e659c0d555 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 7 Oct 2013 11:41:22 +0200 Subject: [PATCH] Bug 11003: JS error on the cart page A call to yuiToolbar breaks js code on the cart page. Test plan: - add some biblio to your cart - open the cart - a js error occurs (see it with firebug): ReferenceError: yuiToolbar is not defined - apply the patch - retry and verify the error does not appear anymore. --- koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt index c07cc74..0545961 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt @@ -62,7 +62,6 @@ function placeHold () { $(".holdsep").text("| "); $(".hold").text(_("Place Hold")); $("#downloadcartc").empty(); - yuiToolbar(); $("#itemst").tablesorter({ headers: { 0: { sorter: false }} }); -- 1.7.10.4