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 648-654 $(document).ready(function() { Link Here
648
    var relativesIssuesTable;
648
    var relativesIssuesTable;
649
    $("#relatives-issues-tab").click( function() {
649
    $("#relatives-issues-tab").click( function() {
650
        if ( ! relativesIssuesTable ) {
650
        if ( ! relativesIssuesTable ) {
651
            relativesIssuesTable = $("#relatives-issues-table").dataTable({
651
            relativesIssuesTable = $("#relatives-issues-table").dataTable($.extend(true, {}, dataTablesDefaults, {
652
                "bAutoWidth": false,
652
                "bAutoWidth": false,
653
                "sDom": "rt",
653
                "sDom": "rt",
654
                "aaSorting": [],
654
                "aaSorting": [],
Lines 808-814 $(document).ready(function() { Link Here
808
                        fnCallback(json)
808
                        fnCallback(json)
809
                    } );
809
                    } );
810
                },
810
                },
811
            });
811
            }));
812
        }
812
        }
813
    });
813
    });
814
814
(-)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 183-189 $(document).ready(function() { Link Here
183
                        d.borrowernumber = borrowernumber;
183
                        d.borrowernumber = borrowernumber;
184
                    }
184
                    }
185
                },
185
                },
186
            });
186
            }));
187
187
188
            $('#holds-table').on( 'draw.dt', function () {
188
            $('#holds-table').on( 'draw.dt', function () {
189
                $(".hold-suspend").on( "click", function() {
189
                $(".hold-suspend").on( "click", function() {
190
- 

Return to bug 13749