miker the wise squashes two bugs simply by ...
authorLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Thu, 19 Jan 2012 21:30:23 +0000 (16:30 -0500)
committerLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Mon, 23 Jan 2012 17:26:59 +0000 (12:26 -0500)
... switching from FilteringSelect to ComboBox

Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Open-ILS/web/opac/skin/default/js/search_bar.js

index 2e76bfd..c78de12 100644 (file)
@@ -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",