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

(-)a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js (-8 / +7 lines)
Lines 3-13 $(document).ready(function() { Link Here
3
    $(".clickable").click(function() {
3
    $(".clickable").click(function() {
4
        window.document.location = $(this).data('url');
4
        window.document.location = $(this).data('url');
5
    });
5
    });
6
//    var table = KohaTable("table_borrowers",
6
    var table = KohaTable("table_borrowers",
7
//        {
7
        {
8
//            "aaSorting": [ 0, "asc" ],
8
            "aaSorting": [ 0, "asc" ],
9
//            "sDom": "t",
9
            "sDom": "t",
10
//            "iDisplayLength": -1
10
            "iDisplayLength": -1
11
//        },
11
        },
12
//        columns_settings_borrowers_table, null);
12
        columns_settings_borrowers_table, null);
13
});
13
});
14
- 

Return to bug 22330