@@ -, +, @@ setting CircAutocompl to "Don't try" Alt+U = Search catalogue Alt+R = Check out Alt+Q = Check in Alt+U = Check out Alt+R = Check in ALt+Q = Search catalogue --- koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js @@ -18,7 +18,7 @@ function formatstr(str, col) { // http://stackoverflow.com/questions/14859281/select-tab-by-name-in-jquery-ui-1-10-0/16550804#16550804 $.fn.tabIndex = function () { - return $(this).parent().find(this).index() - 1; + return $(this).parent().children('div').index(this); }; $.fn.selectTabByID = function (tabID) { $(this).tabs("option", "active", $(tabID).tabIndex()); --