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;
- +