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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc (-3 lines)
Lines 1-6 Link Here
1
<script>$(document).ready(function(){
2
	$("input[name=q]:eq(0)").focus();
3
});</script>
4
1
5
<div class="gradient">
2
<div class="gradient">
6
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt (+4 lines)
Lines 6-11 Link Here
6
    //<![CDATA[
6
    //<![CDATA[
7
7
8
     $(document).ready(function() {
8
     $(document).ready(function() {
9
        //Set focus to cataloging search
10
        $("input[name=q]:eq(0)").focus();
11
9
        $("#z3950search").click(function(){
12
        $("#z3950search").click(function(){
10
            PopupZ3950("");
13
            PopupZ3950("");
11
            return false;
14
            return false;
Lines 32-37 Link Here
32
        [% END %]
35
        [% END %]
33
        return strQuery;
36
        return strQuery;
34
    }
37
    }
38
35
    //]]>
39
    //]]>
36
</script>
40
</script>
37
</head>
41
</head>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt (-1 / +3 lines)
Lines 25-30 $(document).ready(function(){ Link Here
25
    tagslib = [];
25
    tagslib = [];
26
    $.getJSON("/cgi-bin/koha/cataloguing/merge_ajax.pl", {frameworkcode : "[% framework %]" }, function(json) {
26
    $.getJSON("/cgi-bin/koha/cataloguing/merge_ajax.pl", {frameworkcode : "[% framework %]" }, function(json) {
27
        tagslib = json;
27
        tagslib = json;
28
29
    //Set focus to cataloging search
30
    $("input[name=q]:eq(0)").focus();
28
    });
31
    });
29
32
30
    // Creating tabs
33
    // Creating tabs
31
- 

Return to bug 11905