https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32204 --- Comment #5 from Lucas Gass <lucas@bywatersolutions.com> --- (In reply to Nick Clemens from comment #3)
I believe it is the tabs: koha-tmpl/intranet-tmpl/prog/js/staff-global.js 51 $(document).ready(function() { 52 $('#header_search').tabs({ 53 create: function( e, ui ){ 54 ui.panel.find("input:text:first").focus(); 55 }, 56 activate: function ( e, ui ) { 57 ui.newPanel.find("input:text:first").focus(); 58 } 59 });
They are moving the focus to the header search when the tabs are loaded - refreshing from the url doesn't fully reload the page, so the anchor works as we don't trigger the focus
100% correct. I think we could check for the existence of a hash before we set the focus. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.