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 625-631 $(document).ready(function() { Link Here
625
    var relativesIssuesTable;
625
    var relativesIssuesTable;
626
    $("#relatives-issues-tab").click( function() {
626
    $("#relatives-issues-tab").click( function() {
627
        if ( ! relativesIssuesTable ) {
627
        if ( ! relativesIssuesTable ) {
628
            relativesIssuesTable = $("#relatives-issues-table").dataTable({
628
            relativesIssuesTable = $("#relatives-issues-table").dataTable($.extend(true, {}, dataTablesDefaults, {
629
                "bAutoWidth": false,
629
                "bAutoWidth": false,
630
                "sDom": "rt",
630
                "sDom": "rt",
631
                "aaSorting": [],
631
                "aaSorting": [],
Lines 780-786 $(document).ready(function() { Link Here
780
                        fnCallback(json)
780
                        fnCallback(json)
781
                    } );
781
                    } );
782
                },
782
                },
783
            });
783
            }));
784
        }
784
        }
785
    });
785
    });
786
786
(-)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