Fix JS error on Ctrl+click in select

This commit is contained in:
Jakub Vrana 2014-09-14 14:19:05 -07:00
parent 1c56b3b206
commit a987a2a4de

View file

@ -186,6 +186,9 @@ function tableClick(event, click) {
click = false;
}
el = el.parentNode;
if (!el) { // Ctrl+click on text fields hides the element
return;
}
}
el = el.firstChild.firstChild;
if (click) {