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

@@ -1178,3 +1178,12 @@ function lzw_decompress($binary) {
}
return $return;
}
/** 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);'";
}