diff options
author | marijus <mario@mariovavti.com> | 2014-06-05 17:53:06 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-06-05 17:53:06 +0200 |
commit | fed8b6b5664bdebaf1389bbf6269fc42af1f3c50 (patch) | |
tree | 005f1a0d7327da818dd1a8990ce275f8539a62bd /view/js | |
parent | 48f856e84cb117b6224ae7a1e0cac30070f1af24 (diff) | |
download | volse-hubzilla-fed8b6b5664bdebaf1389bbf6269fc42af1f3c50.tar.gz volse-hubzilla-fed8b6b5664bdebaf1389bbf6269fc42af1f3c50.tar.bz2 volse-hubzilla-fed8b6b5664bdebaf1389bbf6269fc42af1f3c50.zip |
move new comment open/close js functions to core so they can be used by other themes
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index 2f695c77e..871b683d5 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1,5 +1,38 @@ function confirmDelete() { return confirm(aStr['delitem']); } + + function commentOpenUI(obj,id) { + + $(document).unbind( "click.commentOpen", handler ); + + var handler = function() { + if(obj.value == aStr['comment']) { + obj.value = ''; + $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty"); + $("#comment-tools-" + id).show(); + } + }; + + $(document).bind( "click.commentOpen", handler ); + + } + + function commentCloseUI(obj,id) { + + $(document).unbind( "click.commentClose", handler ); + + var handler = function() { + if(obj.value == '') { + obj.value = aStr['comment']; + $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty"); + $("#comment-tools-" + id).hide(); + } + }; + + $(document).bind( "click.commentClose", handler ); + + } + function commentOpen(obj,id) { if(obj.value == aStr['comment']) { obj.value = ''; |