diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-06-05 20:48:03 +0000 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-06-05 20:48:03 +0000 |
commit | 359814eee7a1a5de0af5a096aed8adf974608099 (patch) | |
tree | ac0ef3bfbea925d3cd75b5daa8565f735839dcec /view/theme/redbasic | |
parent | 6ccf6455c4691ca2e90403ff9fbaa21b86512190 (diff) | |
parent | fed8b6b5664bdebaf1389bbf6269fc42af1f3c50 (diff) | |
download | volse-hubzilla-359814eee7a1a5de0af5a096aed8adf974608099.tar.gz volse-hubzilla-359814eee7a1a5de0af5a096aed8adf974608099.tar.bz2 volse-hubzilla-359814eee7a1a5de0af5a096aed8adf974608099.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 5a9d2f390..4f70752c0 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -1,34 +1,3 @@ -function commentOpenRedbasic(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 commentCloseRedbasic(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 ); - -} $(document).ready(function() { |