diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-05 21:39:55 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-05 21:39:55 -0700 |
commit | 6817c5d59ad578370a2b60dbdcdba16e43dbac65 (patch) | |
tree | 3c24b1b920273fcd57455c6ab73a16650772be01 /view/jot-header.tpl | |
parent | 3713a9291cfb5d9fad160abd8f4a167693171998 (diff) | |
download | volse-hubzilla-6817c5d59ad578370a2b60dbdcdba16e43dbac65.tar.gz volse-hubzilla-6817c5d59ad578370a2b60dbdcdba16e43dbac65.tar.bz2 volse-hubzilla-6817c5d59ad578370a2b60dbdcdba16e43dbac65.zip |
lots of work, 2way friends, comments...
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r-- | view/jot-header.tpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index e5607b6bb..72cc672ff 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -21,6 +21,20 @@ tinyMCE.init({ }); + + + function openClose(theID) { + if(document.getElementById(theID).style.display == "block") { + document.getElementById(theID).style.display = "none" + } + else { + document.getElementById(theID).style.display = "block" + } + } + function openMenu(theID) { + document.getElementById(theID).style.display = "block" + } + </script> <!-- |