diff options
author | Emil Ivov <emcho@jitsi.org> | 2007-10-19 07:33:12 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2007-10-19 07:33:12 +0000 |
commit | 72d5f7e4e2fb4ea3d655201d7c0f357be4851aff (patch) | |
tree | 5a7dbb12002615f5105d8e3469acc4ca25f29f79 /www | |
parent | 0cc870a931e1eedacc3e02e07613a119194f6e8a (diff) | |
download | jitsi-72d5f7e4e2fb4ea3d655201d7c0f357be4851aff.zip jitsi-72d5f7e4e2fb4ea3d655201d7c0f357be4851aff.tar.gz jitsi-72d5f7e4e2fb4ea3d655201d7c0f357be4851aff.tar.bz2 |
readding mangling
Diffstat (limited to 'www')
-rw-r--r-- | www/project_tools.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www/project_tools.html b/www/project_tools.html index 71f16fe..460a952 100644 --- a/www/project_tools.html +++ b/www/project_tools.html @@ -4,6 +4,36 @@ </dd> </dl> +<script id="eraser"> + + // if the Get Involved block was named I could just get the + // the two sections by name and set the display to none. + + // get to the block + var dd = document.getElementById("eraser").previousSibling; + + // hide all default navigation bars + + // within the previous blocks hide everything + for( n=dd; n!=null; n=n.previousSibling ) { + if(n.nodeType==1) { // if element + if(n.tagName=="DL") + { // kill all the link items + n.style.display = "none"; + } + } + } + + var searchbox = document.getElementById("searchbox"); + searchbox.style.display = "none"; + + var helptext = document.getElementById("helptext"); + helptext.style.display = "none"; + + // This is all you can do because the "Search" and "How do I" + // boxes aren't created +</script> + <dl id="tools" class="navgroup"> <dt>Project Tools</dt> <dd> |