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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt (-1 / +1 lines)
Lines 329-335 Acquisitions › Koha Link Here
329
            $('span.hint').hide();
329
            $('span.hint').hide();
330
            KohaTable("table_orders", {
330
            KohaTable("table_orders", {
331
                "bPaginate": false
331
                "bPaginate": false
332
            });
332
            }, null);
333
333
334
            [% IF op == 'search' OR op == 'select' %]
334
            [% IF op == 'search' OR op == 'select' %]
335
                patron_autocomplete({
335
                patron_autocomplete({
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-1 / +1 lines)
Lines 696-702 Link Here
696
                        'aaSortingFixed': [[ 1, 'asc' ]],
696
                        'aaSortingFixed': [[ 1, 'asc' ]],
697
                        'bPaginate': false,
697
                        'bPaginate': false,
698
                        "bAutoWidth": false
698
                        "bAutoWidth": false
699
                    });
699
                    }, null);
700
700
701
                    $(oTable).treetable({
701
                    $(oTable).treetable({
702
                        expandable: true
702
                        expandable: true
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-1 / +1 lines)
Lines 433-439 Link Here
433
            KohaTable("categoriest", {
433
            KohaTable("categoriest", {
434
                "aaSorting": [[ 0, "asc" ]],
434
                "aaSorting": [[ 0, "asc" ]],
435
                "sPaginationType": "full"
435
                "sPaginationType": "full"
436
            });
436
            }, null);
437
437
438
            if ( $("#branches option:selected").length < 1 ) {
438
            if ( $("#branches option:selected").length < 1 ) {
439
                $("#branches option:first").attr("selected", "selected");
439
                $("#branches option:first").attr("selected", "selected");
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt (-1 / +1 lines)
Lines 227-233 Link Here
227
        $(document).ready(function() {
227
        $(document).ready(function() {
228
            KohaTable("table_desks", {
228
            KohaTable("table_desks", {
229
                "order": [[ 1, "asc" ]]
229
                "order": [[ 1, "asc" ]]
230
            });
230
            }, null);
231
        });
231
        });
232
    </script>
232
    </script>
233
[% END %]
233
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-1 / +1 lines)
Lines 1341-1347 Link Here
1341
                "aaSortingFixed": [ [0,'asc'], [1,'asc'], [2,'asc'], [3,'asc'] ],
1341
                "aaSortingFixed": [ [0,'asc'], [1,'asc'], [2,'asc'], [3,'asc'] ],
1342
                "bPaginate": false,
1342
                "bPaginate": false,
1343
                "bAutoWidth": false
1343
                "bAutoWidth": false
1344
            });
1344
            }, null);
1345
        });
1345
        });
1346
1346
1347
        function clear_edit(){
1347
        function clear_edit(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 1995-2001 Note that permanent location is a code, and location may be an authval. Link Here
1995
                        fnCallback(json)
1995
                        fnCallback(json)
1996
                    } );
1996
                    } );
1997
                },
1997
                },
1998
            });
1998
            }, null);
1999
1999
2000
            // Create new item groups
2000
            // Create new item groups
2001
            $('.item-group-create').on('click', function(){
2001
            $('.item-group-create').on('click', function(){
2002
- 

Return to bug 31435