mirror of
https://github.com/searxng/searxng
synced 2024-11-05 06:01:05 +00:00
[fix] autocomple.js: register li.onmousedown instead li.onclick
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
7cdb86ba95
commit
85159ad307
@ -73,6 +73,16 @@
|
|||||||
this.DOMResults.style.left = this.Input.offsetLeft + "px";
|
this.DOMResults.style.left = this.Input.offsetLeft + "px";
|
||||||
this.DOMResults.style.width = this.Input.clientWidth + "px";
|
this.DOMResults.style.width = this.Input.clientWidth + "px";
|
||||||
},
|
},
|
||||||
|
_Open: function () {
|
||||||
|
var params = this;
|
||||||
|
Array.prototype.forEach.call(this.DOMResults.getElementsByTagName("li"), function (li) {
|
||||||
|
if (li.getAttribute("class") != "locked") {
|
||||||
|
li.onmousedown = function () {
|
||||||
|
params._Select(li);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
}, "#" + qinput_id);
|
}, "#" + qinput_id);
|
||||||
|
|
||||||
// hack, see : https://github.com/autocompletejs/autocomplete.js/issues/37
|
// hack, see : https://github.com/autocompletejs/autocomplete.js/issues/37
|
||||||
|
Loading…
Reference in New Issue
Block a user