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 2285-2290 ul.ui-tabs-nav li { Link Here
2285
     border-radius: 0 0 4px 4px;
2285
     border-radius: 0 0 4px 4px;
2286
}
2286
}
2287
2287
2288
#header_search > div,
2289
#header_search > ul > li {
2290
    display: none;
2291
}
2292
#header_search > div:first-of-type,
2293
#header_search > ul > li:first-of-type {
2294
    display: block;
2295
}
2296
2288
.authref {
2297
.authref {
2289
    font-style: normal;
2298
    font-style: normal;
2290
    text-indent: 4em;
2299
    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