From 40577065b60ab87330f1fc0c3e6bbe52f2373e6c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 1 Aug 2018 13:18:47 -0300 Subject: [PATCH] Bug 21139: No table in toolbar We do not need this selector, we will not have a table in the toolbar Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens --- .../intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js b/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js index 3a8a494e06..c0df4ea6ab 100644 --- a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js +++ b/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js @@ -32,13 +32,6 @@ tbhBis.attr('id', tbh.attr('id')+'Bis'); // Avoid 2 elts with the same id tbh.after(tbhBis); tbh.width(tbh.width()); - var tbl = tbh.find("th,td"); - if (tbl.length > 0) { - tbl.each(function () { - var $elt = $(this); - $elt.width($elt.outerWidth(true)); - }); - } tbh.css({ 'position': 'absolute', 'top': originalPosition, -- 2.39.2