1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Ignore mousing over border of select

This commit is contained in:
Jakub Vrana
2013-07-19 13:04:14 -07:00
parent 32ff363ee3
commit 9e2592f35f
3 changed files with 14 additions and 9 deletions

View File

@@ -474,5 +474,5 @@ function doc_link($path) {
* @return string
*/
function on_help($command, $side = 0) {
return " onmouseover='helpMouseover(getTarget(event), " . h($command) . ", $side);' onmouseout='helpMouseout();'";
return " onmouseover='helpMouseover(this, event, " . h($command) . ", $side);' onmouseout='helpMouseout(this, event);'";
}