From ef06299bddd0b333bfbea104e5ab3b71e63b3e5b Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 2 Jun 2020 14:00:25 +0000 Subject: [PATCH] Bug 25653: Update tab selector to use 'active' and include all options It looks like the functionality was broken when ui tabs were upgraded and mainmainentry was added To test: 1 - Browse to Authorities 2 - Search in each tab 3 - Note all search results revert to 'Search main heading a only' 4 - Apply patch 5 - Note selection is retained after search Signed-off-by: Claire Gravely --- koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc index f8043c5cf1..a788fee20a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc @@ -78,12 +78,14 @@ $(document).ready(function () { var searchType = '[% marclist | html %]'; if (searchType) { - if ('mainentry' == searchType) { - $("#header_search").tabs( "option", "selected", 0 ); + if ('mainmainentry' == searchType) { + $("#header_search").tabs( "option", "active", 0 ); + } else if ('mainentry' == searchType) { + $("#header_search").tabs( "option", "active", 1 ); } else if ('match' == searchType) { - $("#header_search").tabs( "option", "selected", 1 ); + $("#header_search").tabs( "option", "active", 2 ); } else if ('all' == searchType) { - $("#header_search").tabs( "option", "selected", 2 ); + $("#header_search").tabs( "option", "active", 3 ); } } -- 2.11.0