+
+ // Allow double click to show auto-click suggestions
+ this.input.addEventListener('dblclick', () => {
+ this.input.setAttribute('autocomplete', 'on');
+ this.button.focus();
+ this.input.focus();
+ });
+
+ new KeyboardNavigationHandler(this.container, () => {
+ this.hideSuggestions();
+ });