Modifying styling of resident search boxes in order to prevent brief appearance of...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / js / staff-global.js
1 // staff-global.js
2
3 function _(s) { return s } // dummy function for gettext
4
5  $(document).ready(function() {
6         $(".focus").focus();
7         $('#toplevelmenu').clickMenu(); 
8         $('#header_search').tabs({
9                 onShow: function() {
10                 $('#header_search').find('div:visible').find('input').eq(0).focus();
11             }   
12         });
13  });
14  
15