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

(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-2 / +1 lines)
Lines 58-64 var dataTablesDefaults = { Link Here
58
        // When the DataTables search function is triggered,
58
        // When the DataTables search function is triggered,
59
        // enable or disable the "Clear filter" button based on
59
        // enable or disable the "Clear filter" button based on
60
        // the presence of a search string
60
        // the presence of a search string
61
        $("#" + tableId ).on( 'search.dt', function ( e, settings ) {
61
        $(this).on( 'search.dt', function ( e, settings ) {
62
            toggledClearFilter(settings.oPreviousSearch.sSearch, tableId);
62
            toggledClearFilter(settings.oPreviousSearch.sSearch, tableId);
63
        });
63
        });
64
    }
64
    }
65
- 

Return to bug 33066