mongo commit

This commit is contained in:
Mike Macgirvin 2010-07-12 16:43:59 -07:00
parent b0f8cd5fe6
commit e0e2a032cf
9 changed files with 61 additions and 20 deletions

View file

@ -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);
}
}