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 130-136 $(document).ready(function () { Link Here
130
        }
130
        }
131
    });
131
    });
132
132
133
    $(".focus").focus();
133
    $(".focus:visible").focus();
134
134
    $(".validated").each(function () {
135
    $(".validated").each(function () {
135
        $(this).validate();
136
        $(this).validate();
136
    });
137
    });
137
- 

Return to bug 37373