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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-2 / +2 lines)
Lines 643-649 $(document).ready(function() { Link Here
643
    var relativesIssuesTable;
643
    var relativesIssuesTable;
644
    $("#relatives-issues-tab").click( function() {
644
    $("#relatives-issues-tab").click( function() {
645
        if ( ! relativesIssuesTable ) {
645
        if ( ! relativesIssuesTable ) {
646
            relativesIssuesTable = $("#relatives-issues-table").dataTable({
646
            relativesIssuesTable = $("#relatives-issues-table").dataTable($.extend(true, {}, dataTablesDefaults, {
647
                "bAutoWidth": false,
647
                "bAutoWidth": false,
648
                "sDom": "rt",
648
                "sDom": "rt",
649
                "aaSorting": [],
649
                "aaSorting": [],
Lines 798-804 $(document).ready(function() { Link Here
798
                        fnCallback(json)
798
                        fnCallback(json)
799
                    } );
799
                    } );
800
                },
800
                },
801
            });
801
            }));
802
        }
802
        }
803
    });
803
    });
804
804
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-3 / +2 lines)
Lines 10-16 $(document).ready(function() { Link Here
10
    function load_holds_table() {
10
    function load_holds_table() {
11
        var holds = new Array();
11
        var holds = new Array();
12
        if ( ! holdsTable ) {
12
        if ( ! holdsTable ) {
13
            holdsTable = $("#holds-table").dataTable({
13
            holdsTable = $("#holds-table").dataTable($.extend(true, {}, dataTablesDefaults, {
14
                "bAutoWidth": false,
14
                "bAutoWidth": false,
15
                "sDom": "rt",
15
                "sDom": "rt",
16
                "columns": [
16
                "columns": [
Lines 179-185 $(document).ready(function() { Link Here
179
                        d.borrowernumber = borrowernumber;
179
                        d.borrowernumber = borrowernumber;
180
                    }
180
                    }
181
                },
181
                },
182
            });
182
            }));
183
183
184
            $('#holds-table').on( 'draw.dt', function () {
184
            $('#holds-table').on( 'draw.dt', function () {
185
                $(".hold-suspend").on( "click", function() {
185
                $(".hold-suspend").on( "click", function() {
186
- 

Return to bug 13749