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 2245-2250 ul.ui-tabs-nav li { Link Here
2245
     border-radius: 0 0 4px 4px;
2245
     border-radius: 0 0 4px 4px;
2246
}
2246
}
2247
2247
2248
#header_search > div,
2249
#header_search > ul > li {
2250
    display: none;
2251
}
2252
#header_search > div:first-of-type,
2253
#header_search > ul > li:first-of-type {
2254
    display: block;
2255
}
2256
2248
.authref {
2257
.authref {
2249
    font-style: normal;
2258
    font-style: normal;
2250
    text-indent: 4em;
2259
    text-indent: 4em;
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js (-1 / +2 lines)
Lines 33-38 $.fn.selectTabByID = function (tabID) { Link Here
33
    if($("#header_search #circ_search").length > 0){ shortcut.add('Alt+u',function (){ $("#header_search").selectTabByID("#circ_search"); $("#findborrower").focus(); }); } else { shortcut.add('Alt+u',function(){ location.href="/cgi-bin/koha/circ/circulation.pl"; }); }
33
    if($("#header_search #circ_search").length > 0){ shortcut.add('Alt+u',function (){ $("#header_search").selectTabByID("#circ_search"); $("#findborrower").focus(); }); } else { shortcut.add('Alt+u',function(){ location.href="/cgi-bin/koha/circ/circulation.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"; }); }
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
35
36
    $("#header_search > ul > li").show();
37
36
    $(".focus").focus();
38
    $(".focus").focus();
37
    $(".validated").each(function() {
39
    $(".validated").each(function() {
38
        $(this).validate();
40
        $(this).validate();
39
- 

Return to bug 15119