[Koha-bugs] [Bug 8401] Search term deleted from system preference content

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Jan 17 15:25:32 CET 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8401

--- Comment #8 from Jorge de Cardenas <jdeca at smfpl.org> ---
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.


More information about the Koha-bugs mailing list