diff options
author | Stef Walter <stef@memberwebs.com> | 2006-01-21 19:30:43 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-01-21 19:30:43 +0000 |
commit | ec327cbb34922c125c3dac2c4757af380200f44a (patch) | |
tree | 87598efdde7cd7c0e3b584b9f8af9782f43fc5a0 /html/rrdui.js | |
parent | 00e5df0f96a713060e5839f80b9b4fa6f562b0c3 (diff) |
Enhancements to the time span selector.
Diffstat (limited to 'html/rrdui.js')
-rw-r--r-- | html/rrdui.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/html/rrdui.js b/html/rrdui.js index f71a8a3..ad056d5 100644 --- a/html/rrdui.js +++ b/html/rrdui.js @@ -406,7 +406,7 @@ function actionGoto(img, act) /* Display the selection thingy */ var got = gdoc.getElementById("goto"); - /* TODO: Make 120/170 a constant */ + /* TODO: Make numbers constants */ got.style.top = img.offsetTop + 40; got.style.left = (img.offsetLeft + img.width) - 160; got.style.width = 120; @@ -415,6 +415,8 @@ function actionGoto(img, act) var sel = gdoc.getElementById("goto-select"); sel.onchange = actionGotoChange; sel._img = img; + sel.value = null; + sel.selectedIndex = -1; } function actionGotoCancel() |