diff options
author | gerv%gerv.net <> | 2005-07-21 05:09:18 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2005-07-21 05:09:18 +0200 |
commit | deaa3dcc512cc90d608c9242e754ad7de034e7ec (patch) | |
tree | e3e223406937518606c71f5ac96c65873a65b801 /template | |
parent | b0d0cb1523a0d6742ededb3cd1fc26e483cfc0fa (diff) | |
download | bugzilla-deaa3dcc512cc90d608c9242e754ad7de034e7ec.tar.gz bugzilla-deaa3dcc512cc90d608c9242e754ad7de034e7ec.tar.xz |
Bug 300743: add "px" to prevent query help tooltips appearing at wrong position. Patch by gerv; r=myk, kiko, wicked, a=mkanat, myk.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/help-header.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/help-header.html.tmpl b/template/en/default/global/help-header.html.tmpl index 1a74a1e82..330ba9160 100644 --- a/template/en/default/global/help-header.html.tmpl +++ b/template/en/default/global/help-header.html.tmpl @@ -67,8 +67,8 @@ myparent = myparent.offsetParent; } - currentHelp.style.top = mytop + this.offsetHeight + 5; - currentHelp.style.left = myleft; + currentHelp.style.top = mytop + this.offsetHeight + 5 + "px"; + currentHelp.style.left = myleft + "px"; currentHelp.style.display=''; } } |