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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-7 / +4 lines)
Lines 27-40 Link Here
27
    $(document).ready(function() {
27
    $(document).ready(function() {
28
        columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'currency', 'currencies-table', 'json' ) %]
28
        columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'currency', 'currencies-table', 'json' ) %]
29
        var issuest = KohaTable("#currencies-table", {
29
        var issuest = KohaTable("#currencies-table", {
30
            "sDom": 'C<"clearfix">t',
30
            dom: 'B<"clearfix">t',
31
            "aaSorting": [],
31
            "columnDefs": [
32
            "aoColumnDefs": [
33
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
32
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
34
                { "sType": "title-string", "aTargets" : [ "title-string" ] }
33
                { "sType": "title-string", "aTargets" : [ "title-string" ] }
35
            ],
34
                ],
36
            "bPaginate": false,
35
        }, columns_settings );
37
        }, columns_settings);
38
36
39
        // prevents users to check active with a currency != 1
37
        // prevents users to check active with a currency != 1
40
        $("#rate").keyup(function() {
38
        $("#rate").keyup(function() {
41
- 

Return to bug 15285