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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt (-3 / +2 lines)
Lines 309-315 Link Here
309
        });
309
        });
310
310
311
        $(document).ready(function() {
311
        $(document).ready(function() {
312
            [% UNLESS (patron ) %]
312
            if ( $( "#patron" ).size() ){
313
                $( "#patron" ).autocomplete({
313
                $( "#patron" ).autocomplete({
314
                    source: "/cgi-bin/koha/circ/ysearch.pl",
314
                    source: "/cgi-bin/koha/circ/ysearch.pl",
315
                    minLength: 3,
315
                    minLength: 3,
Lines 328-334 Link Here
328
                             item.country + "</small></a>" )
328
                             item.country + "</small></a>" )
329
                    .appendTo( ul );
329
                    .appendTo( ul );
330
                };
330
                };
331
            [% END %]
331
            }
332
332
333
            $( ".ar-update-branchcode" ).on('focus', function(){
333
            $( ".ar-update-branchcode" ).on('focus', function(){
334
                previous_branchcode = this.value;
334
                previous_branchcode = this.value;
335
- 

Return to bug 21389