Don't automatically fill in form suggestion if it's only one

This commit is contained in:
Alexander Butenko 2009-11-30 22:05:20 +01:00 committed by Christian Dywan
parent a64a583c4a
commit abba290278

View file

@ -63,7 +63,7 @@ AutoSuggestControl.prototype.createDropDown = function () {
this.layer = document.createElement("div"); this.layer = document.createElement("div");
this.layer.className = "suggestions"; this.layer.className = "suggestions";
this.layer.style.visibility = "hidden"; 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) //when the user clicks on the a suggestion, get the text (innerHTML)
//and place it into a textbox //and place it into a textbox
@ -158,7 +158,7 @@ AutoSuggestControl.prototype.handleKeyUp = function (oEvent /*:Event*/) {
this.hideSuggestions(); this.hideSuggestions();
} else { } else {
//request suggestions from the suggestion provider with typeahead //request suggestions from the suggestion provider with typeahead
this.provider.requestSuggestions(this, true); this.provider.requestSuggestions(this, false);
} }