From f5d6b6e4e95e1850908fb73b88a36bd6d76b0f5c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 5 Mar 2019 15:16:44 -0300 Subject: [PATCH] Bug 22419: Records listed twice when select/unselect all from the cart It fixes a browser timeout when records are removed from the cart. The onchange event already call selRecord. Test plan: Launch a search Add all the result to your cart Open the cart Click "select all" Then remove them all from your cart => Without this patch the action will timeout => With this patch applied the action is immediate Signed-off-by: Lucas Gass Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens (cherry picked from commit a0e10d97223ae2945f6ac64b7d86f4ac2fea9e03) Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/js/cart.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/cart.js b/koha-tmpl/intranet-tmpl/prog/js/cart.js index 2d801b602a..923ed3242a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/cart.js +++ b/koha-tmpl/intranet-tmpl/prog/js/cart.js @@ -70,7 +70,6 @@ $(document).ready(function(){ var checked = []; $("#bookbag_form").checkCheckboxes("*", true).each( function() { - selRecord(this.value,true); $(this).change(); } ); @@ -80,7 +79,6 @@ $(document).ready(function(){ var checked = []; $("#bookbag_form").unCheckCheckboxes("*",true).each( function() { - selRecord(this.value,false); $(this).change(); } ); -- 2.39.2