From: gmc Date: Mon, 4 Apr 2011 17:26:31 +0000 (+0000) Subject: tweak to default suggestion for low-hits search X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=9c32ccc78b853beced2f6971d2357c6175100144 tweak to default suggestion for low-hits search Rather than show a suggestion for every word in the original search phrase, only display suggestions for words not found in the dictionary. For example, rather than having a search for "Amesh paradise" return a suggestion of "Amish paraders", return "Amish paradise" as the suggestion (assuming the default dictionaries are used). Signed-off-by: Galen Charlton git-svn-id: svn://svn.open-ils.org/ILS/trunk@19964 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 39dc238..dfd5455 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -330,7 +330,7 @@ function resultSuggestSpelling(r) { if( blob ) blob = blob[0]; else continue; if( blob.word == word ) { - if( blob.suggestions && blob.suggestions[0] ) { + if( !blob.found && blob.suggestions && blob.suggestions[0] ) { newterm += " " + blob.suggestions[0]; unHideMe($('did_you_mean')); } else {