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

Move function used in Editor

This commit is contained in:
Jakub Vrana
2013-12-19 12:55:53 -08:00
parent abbacd4377
commit a41ee665e9
2 changed files with 9 additions and 9 deletions

View File

@@ -496,12 +496,3 @@ function doc_link($paths) {
);
return ($paths[$jush] ? "<a href='$urls[$jush]$paths[$jush]' target='_blank' rel='noreferrer'><sup>?</sup></a>" : "");
}
/** Return events to display help on mouse over
* @param string JS expression
* @param bool JS expression
* @return string
*/
function on_help($command, $side = 0) {
return " onmouseover='helpMouseover(this, event, " . h($command) . ", $side);' onmouseout='helpMouseout(this, event);'";
}