diff options
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> <!-- |