From fe1cc90eab03f988c2001cb2882dd4eda98245f0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 27 Apr 2015 16:55:32 +0200 Subject: [PATCH] [PASSED QA] Bug 12135: Fix suggestions table width The trick to update the suggestions table width is outdated since jQuery UI has been updated. Test plan: 0/ Don't apply this patch 1/ Go on the suggestions page (suggestion/suggestion.pl), change tabs: the table width is wrong 2/ Apply this patch 4/ Repeat 1 and confirm the width is now updated. Signed-off-by: Christopher Brannon Signed-off-by: Katrin Fischer The table sizes still vary slightly, but this is an improvement. --- koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt index c609a05..1c2e551 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -47,11 +47,8 @@ $(document).ready(function() { $('#suggestiontabs').tabs({ // Correct table sizing for tables hidden in tabs // http://www.datatables.net/examples/api/tabs_and_scrolling.html - "show": function(event, ui) { - var oTable = $('div.dataTables_wrapper>table', ui.panel).dataTable(); - if ( oTable.length > 0 ) { - oTable.fnAdjustColumnSizing(); - } + "activate": function(event, ui) { + $( $.fn.dataTable.tables( true ) ).DataTable().columns.adjust(); } }); $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, { -- 1.9.1