@@ -, +, @@ - When the checkout page loads, confirm that each tab loads its contents correctly when clicked. - Check that the correct tab is activated when you append the tab link to the page url, e.g. /cgi-bin/koha/circ/circulation.pl?borrowernumber=XXX#reldebarments ...which should select the "Restrictions" tab for you. You may need to try this in a new tab or shift-reload to get the browser to look for the hash. - Perform the same tests on the patron details page. --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 2 +- koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -894,7 +894,7 @@ } }, "activate": function( event, ui ) { - $('#'+ui.newTab.context.id).click(); + $("a", ui.newTab ).click(); } } ); --- a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js +++ a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js @@ -11,7 +11,7 @@ $(document).ready(function() { $('#patronlists').tabs({ activate: function( event, ui ) { - $('#'+ui.newTab.context.id).click(); + $("a", ui.newTab ).click(); } }); --