http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8401
--- Comment #8 from Jorge de Cardenas <[email protected]> --- This seem to work disabling highlighting on both 'option' and 'textarea' File: preferences.js Path: /home/koha/kohaclone/koha-tmpl/intranet-tmpl/prog/en/js/pages if ( to_highlight ) { var words = to_highlight.split( ' ' ); $( '.prefs-tab table' ).find( 'td, th' ).not( '.name-cell').each( function ( i, td ) { $.each( words, function ( i, word ) { $( td ).highlight( word ) } ); } ).find( 'option, textarea' ).removeHighlight(); } changed .find( 'option' ).removeHighlight(); to .find( 'option, textarea' ).removeHighlight(); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
