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

(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-2 / +1 lines)
Lines 860-866 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { Link Here
860
                            } else {
860
                            } else {
861
                                table_dt
861
                                table_dt
862
                                    .column(i)
862
                                    .column(i)
863
                                    .search( '^'+this.value+'$', true, false )
863
                                    .search( this.value.length ? '^'+this.value+'$' : '', true, false )
864
                                    .draw();
864
                                    .draw();
865
                            }
865
                            }
866
                        }
866
                        }
867
- 

Return to bug 30055