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

(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-2 / +1 lines)
Lines 748-754 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { Link Here
748
                var is_searchable = table_dt.settings()[0].aoColumns[i].bSearchable;
748
                var is_searchable = table_dt.settings()[0].aoColumns[i].bSearchable;
749
                if ( is_searchable ) {
749
                if ( is_searchable ) {
750
                    var title = $(this).text();
750
                    var title = $(this).text();
751
                    var search_title = _("Search %s").format(title);
751
                    var search_title = _("%s search").format(title);
752
                    $(this).html( '<input type="text" placeholder="%s" />'.format(search_title) );
752
                    $(this).html( '<input type="text" placeholder="%s" />'.format(search_title) );
753
753
754
                    $( 'input', this ).on( 'keyup change', function () {
754
                    $( 'input', this ).on( 'keyup change', function () {
755
- 

Return to bug 27402