diff options
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 109b864a2..41be3da59 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1128,8 +1128,10 @@ function post_comment(id) { $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); var tarea = document.getElementById("comment-edit-text-" + id); - if(tarea) + if(tarea) { commentClose(tarea, id); + $(document).unbind( "click.commentOpen"); + } if(timer) clearTimeout(timer); timer = setTimeout(NavUpdate,1500); } |