From 46f125049be82e2e5eea81020a74a9363e692eac Mon Sep 17 00:00:00 2001 From: Cade Scroggins Date: Sat, 15 Dec 2018 12:45:02 -0800 Subject: [PATCH] fix suggestion click --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 6d425e1..602eedf 100644 --- a/index.html +++ b/index.html @@ -889,12 +889,13 @@ this._instantRedirect = options.instantRedirect; this._newTab = options.newTab; this._inputElVal = ''; - this._clearPreview = this._clearPreview.bind(this); this.show = this.show.bind(this); + this._clearPreview = this._clearPreview.bind(this); this._handleInput = this._handleInput.bind(this); this._handleKeydown = this._handleKeydown.bind(this); this._previewValue = this._previewValue.bind(this); this._submitForm = this._submitForm.bind(this); + this._submitWithValue = this._submitWithValue.bind(this); this._registerEvents(); this._loadQueryParam(); }