From 25d2d037d2b2c302387420965f3b70710a9adbb9 Mon Sep 17 00:00:00 2001 From: Scott Dale Date: Thu, 17 May 2007 01:12:16 +0000 Subject: [PATCH] provide function to show configuration --- usr/local/www/index.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/usr/local/www/index.php b/usr/local/www/index.php index c937bbbcaf..1cfddbbbb9 100755 --- a/usr/local/www/index.php +++ b/usr/local/www/index.php @@ -204,6 +204,16 @@ function addDiv(selectedDiv){ showSave(); } +function configureDiv(selectedDiv){ + selectIntLink = selectedDiv + "-settings"; + d = document; + textlink = d.getElementById(selectIntLink); + if (textlink.style.display == "none") + Effect.BlindDown(selectIntLink, {duration:1}); + else + Effect.BlindUp(selectIntLink, {duration:1}); +} + function showDiv(selectedDiv,swapButtons){ //appear element Effect.BlindDown(selectedDiv, {duration:1}); @@ -437,7 +447,7 @@ echo $jscriptstr;
- +