From abba290278f5e8f9c49c7b391ca77c83ad01fefc Mon Sep 17 00:00:00 2001 From: Alexander Butenko Date: Mon, 30 Nov 2009 22:05:20 +0100 Subject: [PATCH] Don't automatically fill in form suggestion if it's only one --- data/autosuggestcontrol.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/autosuggestcontrol.js b/data/autosuggestcontrol.js index fc0d251b..0de960b2 100644 --- a/data/autosuggestcontrol.js +++ b/data/autosuggestcontrol.js @@ -63,7 +63,7 @@ AutoSuggestControl.prototype.createDropDown = function () { this.layer = document.createElement("div"); this.layer.className = "suggestions"; this.layer.style.visibility = "hidden"; - this.layer.style.width = this.textbox.offsetWidth + 10; + this.layer.style.width = this.textbox.offsetWidth; //when the user clicks on the a suggestion, get the text (innerHTML) //and place it into a textbox @@ -158,7 +158,7 @@ AutoSuggestControl.prototype.handleKeyUp = function (oEvent /*:Event*/) { this.hideSuggestions(); } else { //request suggestions from the suggestion provider with typeahead - this.provider.requestSuggestions(this, true); + this.provider.requestSuggestions(this, false); }