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 856-862 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { Link Here
856
                            } else {
856
                            } else {
857
                                table_dt
857
                                table_dt
858
                                    .column(i)
858
                                    .column(i)
859
                                    .search( '^'+this.value+'$', true, false )
859
                                    .search( this.value.length ? '^'+this.value+'$' : '', true, false )
860
                                    .draw();
860
                                    .draw();
861
                            }
861
                            }
862
                        }
862
                        }
863
- 

Return to bug 30055