From 029edbd74b31df22de25f4f73727fe7ec019b604 Mon Sep 17 00:00:00 2001 From: Fred Pierre Date: Thu, 17 Jan 2013 13:50:23 -0500 Subject: [PATCH] Bug 8401 : Highlighting of search terms in preference causes loss of data To test: 1/ Go to system preferences 2/ Go to SCOUserCSS 3/ Add #self 4/ Search for self 5/ Open SCOUserCSS 6/ Note it now contains only # (Do not click save) 7/ Apply the patch 8/ Refresh the page, and check SCOUserCSS and note it now says #self 9/ Rejoice! Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js b/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js index 80b0fc6..4d793a1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js @@ -108,7 +108,7 @@ $( document ).ready( function () { 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' ).removeHighlight(); + } ).find( 'option, textarea' ).removeHighlight(); } if ( search_jumped ) { -- 1.7.10.4