Bug 25653: Update tab selector to use 'active' and include all options
authorNick Clemens <nick@bywatersolutions.com>
Tue, 2 Jun 2020 14:00:25 +0000 (14:00 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 12 Jun 2020 08:32:35 +0000 (10:32 +0200)
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 <claire_gravely@hotmail.com>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc

index f8043c5..a788fee 100644 (file)
@@ -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 );
         }
     }