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

(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-2 / +1 lines)
Lines 843-849 function _dt_on_visibility(add_filters, table_node, table_dt){ Link Here
843
843
844
function _dt_add_filters(table_node, table_dt, filters_options = {}) {
844
function _dt_add_filters(table_node, table_dt, filters_options = {}) {
845
845
846
    if (!table_node.length) return;
846
    if (!$(table_node).length) return;
847
847
848
    $(table_node).find('thead tr:eq(1)').remove(); // Remove if one exists already
848
    $(table_node).find('thead tr:eq(1)').remove(); // Remove if one exists already
849
    $(table_node).find('thead tr').clone().appendTo( $(table_node).find('thead') );
849
    $(table_node).find('thead tr').clone().appendTo( $(table_node).find('thead') );
850
- 

Return to bug 33484