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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-2 / +2 lines)
Lines 13-19 Link Here
13
[% BLOCK patron_search_filters_simple  %]
13
[% BLOCK patron_search_filters_simple  %]
14
    <form method="get" class="patron_search_form">
14
    <form method="get" class="patron_search_form">
15
        <div class="hint">Enter patron card number or partial name:</div>
15
        <div class="hint">Enter patron card number or partial name:</div>
16
        <input type="text" size="40" class="search_patron_filter" class="focus" autocomplete="off" />
16
        <input type="text" size="40" class="search_patron_filter focus" autocomplete="off" />
17
        <input type="submit" class="btn btn-primary" value="Search" />
17
        <input type="submit" class="btn btn-primary" value="Search" />
18
    </form>
18
    </form>
19
[% END %]
19
[% END %]
Lines 36-42 Link Here
36
                <ol>
36
                <ol>
37
                    <li>
37
                    <li>
38
                        <label>Search:</label>
38
                        <label>Search:</label>
39
                        <input type="text" class="search_patron_filter" value="[% search_filter | html %]" class="focus" />
39
                        <input type="text" class="search_patron_filter focus" value="[% search_filter | html %]" />
40
                    </li>
40
                    </li>
41
41
42
                    [% FOR f IN filters %]
42
                    [% FOR f IN filters %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js (-2 / +2 lines)
Lines 132-138 $(document).ready(function () { Link Here
132
        }
132
        }
133
    });
133
    });
134
134
135
    $(".focus").focus();
135
    $(".focus:visible").focus();
136
136
    $(".validated").each(function () {
137
    $(".validated").each(function () {
137
        $(this).validate();
138
        $(this).validate();
138
    });
139
    });
139
- 

Return to bug 37373