aboutsummaryrefslogtreecommitdiffstats
path: root/include/main.js
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-12 16:43:59 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-12 16:43:59 -0700
commite0e2a032cfd5769f486b4b2abe58a54144b509c0 (patch)
tree27ba338ff9e3c70ac99dc0ee5f86a212b8376a9c /include/main.js
parentb0f8cd5fe684d5c03419838c2859a11ea6d6f8a0 (diff)
downloadvolse-hubzilla-e0e2a032cfd5769f486b4b2abe58a54144b509c0.tar.gz
volse-hubzilla-e0e2a032cfd5769f486b4b2abe58a54144b509c0.tar.bz2
volse-hubzilla-e0e2a032cfd5769f486b4b2abe58a54144b509c0.zip
mongo commit
Diffstat (limited to 'include/main.js')
-rw-r--r--include/main.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/main.js b/include/main.js
index 8d364ebce..f1c6cee12 100644
--- a/include/main.js
+++ b/include/main.js
@@ -16,5 +16,18 @@
document.getElementById(theID).style.display = "none"
}
-
+ function commentOpen(obj,id) {
+ if(obj.value == 'Comment') {
+ obj.value = '';
+ obj.className = "comment-edit-text-full";
+ openMenu("comment-edit-submit-wrapper-" + id);
+ }
+ }
+ function commentClose(obj,id) {
+ if(obj.value == '') {
+ obj.value = 'Comment';
+ obj.className="comment-edit-text-empty";
+ closeMenu("comment-edit-submit-wrapper-" + id);
+ }
+ }