From 6817c5d59ad578370a2b60dbdcdba16e43dbac65 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Mon, 5 Jul 2010 21:39:55 -0700 Subject: lots of work, 2way friends, comments... --- view/comment_item.tpl | 16 ++++++++++++++++ view/jot-header.tpl | 14 ++++++++++++++ view/jot.tpl | 1 + view/register.tpl | 9 ++++++--- view/style.css | 11 ++++++++++- view/wall_item.tpl | 3 +++ 6 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 view/comment_item.tpl (limited to 'view') diff --git a/view/comment_item.tpl b/view/comment_item.tpl new file mode 100644 index 000000000..ed788ad08 --- /dev/null +++ b/view/comment_item.tpl @@ -0,0 +1,16 @@ + +
Comments
+ 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" + } +