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
* @param string
* @param [HTMLElement] defaults to document
* @return HTMLElement
*/
function qs(selector) {
return document.querySelector(selector);
function qs(selector, context) {
return (context || document).querySelector(selector);
}
/** Get last element by selector