diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-21 13:17:24 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-21 13:17:24 +0000 |
| commit | 8ef6917ea5eaae24bc2a15a06a99b3b1f24d1f35 (patch) | |
| tree | 86b9957c4a9a6c4da386064fb497a69cad9fad03 /frontends/php/include/config.inc.php | |
| parent | 2547403188f63f0042a15aff4d17e04e2e80d715 (diff) | |
- added quick help for overview (Eugene)
- developed Dicovery system (Alexei/Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3904 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/config.inc.php')
| -rw-r--r-- | frontends/php/include/config.inc.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index ed817d42..012a0566 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -1531,6 +1531,18 @@ function show_hint_ext(obj, e, hint_text, width, class_name) obj.onmouseout = hide_hint; } +function update_hint(obj, e) +{ + if(!hint_box) return; + + var cursor = get_cursor_position(e); + + var pos = GetPos(obj); + + hint_box.style.left = cursor.x + 10 + "px"; + hint_box.style.top = hint_box.y + obj.offsetHeight + "px"; +} + function create_hint_box() { if(hint_box) return; |
