diff --git a/xpfe/components/autocomplete/resources/content/autocomplete.xml b/xpfe/components/autocomplete/resources/content/autocomplete.xml index 156e050517d7..819e632c543b 100644 --- a/xpfe/components/autocomplete/resources/content/autocomplete.xml +++ b/xpfe/components/autocomplete/resources/content/autocomplete.xml @@ -851,11 +851,7 @@ this.resultsPopup.selectedIndex = null; this.removeAttribute("noMatchesFound"); - // We want to autocomplete only if the user is editing at the end of the text - if (this.mInputElt.selectionEnd >= str.length) - this.mAutoCompleteTimer = setTimeout(this.callListener, this.timeout, this, "startLookup"); - else - this.noMatch = true; + this.mAutoCompleteTimer = setTimeout(this.callListener, this.timeout, this, "startLookup"); ]]> @@ -1021,7 +1017,9 @@