From 39217e7ef179767669aea14387260bc7bfd2f2cc Mon Sep 17 00:00:00 2001 From: Lebbeous Fogle-Weekley Date: Thu, 19 Jan 2012 16:30:23 -0500 Subject: [PATCH] miker the wise squashes two bugs simply by ... ... switching from FilteringSelect to ComboBox Signed-off-by: Lebbeous Fogle-Weekley --- Open-ILS/web/opac/skin/default/js/search_bar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/opac/skin/default/js/search_bar.js b/Open-ILS/web/opac/skin/default/js/search_bar.js index 2e76bfdc1b..c78de1229b 100644 --- a/Open-ILS/web/opac/skin/default/js/search_bar.js +++ b/Open-ILS/web/opac/skin/default/js/search_bar.js @@ -13,14 +13,14 @@ G.evt.common.init.push(searchBarInit); var newSearchLocation; var newSearchDepth = null; -dojo.require("dijit.form.FilteringSelect"); +dojo.require("dijit.form.ComboBox"); dojo.require("openils.AutoSuggestStore"); function autoSuggestInit() { var as_store = new openils.AutoSuggestStore( {"type_selector": G.ui.searchbar.type_selector} ); - var widg = new dijit.form.FilteringSelect({ + var widg = new dijit.form.ComboBox({ "store": as_store, "labelAttr": "match", "labelType": "html", -- 2.11.0