View | Details | Raw Unified | Return to bug 15119
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+9 lines)
Lines 2281-2286 ul.ui-tabs-nav li { Link Here
2281
     border-radius: 0 0 4px 4px;
2281
     border-radius: 0 0 4px 4px;
2282
}
2282
}
2283
2283
2284
#header_search > div,
2285
#header_search > ul > li {
2286
    display: none;
2287
}
2288
#header_search > div:first-of-type,
2289
#header_search > ul > li:first-of-type {
2290
    display: block;
2291
}
2292
2284
.authref {
2293
.authref {
2285
    font-style: normal;
2294
    font-style: normal;
2286
    text-indent: 4em;
2295
    text-indent: 4em;
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js (-1 / +2 lines)
Lines 34-39 $.fn.selectTabByID = function (tabID) { Link Here
34
    if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").selectTabByID("#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
34
    if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").selectTabByID("#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
35
    if($("#header_search #renew_search").length > 0){ shortcut.add('Alt+y',function (){ $("#header_search").selectTabByID("#renew_search"); $("#ren_barcode").focus(); }); } else { shortcut.add('Alt+y',function(){ location.href="/cgi-bin/koha/circ/renew.pl"; }); }
35
    if($("#header_search #renew_search").length > 0){ shortcut.add('Alt+y',function (){ $("#header_search").selectTabByID("#renew_search"); $("#ren_barcode").focus(); }); } else { shortcut.add('Alt+y',function(){ location.href="/cgi-bin/koha/circ/renew.pl"; }); }
36
36
37
    $("#header_search > ul > li").show();
38
37
    $(".focus").focus();
39
    $(".focus").focus();
38
    $(".validated").each(function() {
40
    $(".validated").each(function() {
39
        $(this).validate();
41
        $(this).validate();
40
- 

Return to bug 15119