Fix select function onchange

This commit is contained in:
Jakub Vrana 2018-01-14 10:18:16 +01:00
parent ef3b468626
commit 6d14b47d02
2 changed files with 4 additions and 3 deletions

View file

@ -322,7 +322,7 @@ class Adminer {
echo "<div>" . ($functions || $grouping ? "<select name='columns[$i][fun]'>"
. optionlist(array(-1 => "") + array_filter(array(lang('Functions') => $functions, lang('Aggregation') => $grouping)), $val["fun"]) . "</select>"
. on_help("getTarget(event).value && getTarget(event).value.replace(/ |\$/, '(') + ')'", 1)
. script("qsl('select').onchange = function () { helpClose();" . ($key !== "" ? "" : " this.nextSibling.nextSibling.nextSibling.onchange();") . " };", "")
. script("qsl('select').onchange = function () { helpClose();" . ($key !== "" ? "" : " qsl('select, input', this.parentNode).onchange();") . " };", "")
. "($column)" : $column) . "</div>\n";
$i++;
}

View file

@ -9,10 +9,11 @@ function qs(selector) {
/** Get last element by selector
* @param string
* @param [HTMLElement] defaults to document
* @return HTMLElement
*/
function qsl(selector) {
var els = qsa(selector, document);
function qsl(selector, context) {
var els = qsa(selector, context || document);
return els[els.length - 1];
}