Focus correct field in selectSearch

This commit is contained in:
Jakub Vrana 2018-01-29 21:19:11 +01:00
parent 75450548b3
commit d28d01e76c

View file

@ -1,10 +1,11 @@
/** Get first element by selector /** Get first element by selector
* @param string * @param string
* @param [HTMLElement] defaults to document
* @return HTMLElement * @return HTMLElement
*/ */
function qs(selector) { function qs(selector, context) {
return document.querySelector(selector); return (context || document).querySelector(selector);
} }
/** Get last element by selector /** Get last element by selector