aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-08-28 23:45:03 +0200
committergit-marijus <mario@mariovavti.com>2017-08-28 23:45:03 +0200
commit8517e7e7982acde8d0683edb93e465c68d338d92 (patch)
treeeebad52c08198ac979bc907e21473c27e36eb30c /view
parente70bf975084ee44662bc2c1c19d2fe6aa0268dee (diff)
parent6385d11b5489d3d3cf0c8200e689276824af148e (diff)
downloadvolse-hubzilla-8517e7e7982acde8d0683edb93e465c68d338d92.tar.gz
volse-hubzilla-8517e7e7982acde8d0683edb93e465c68d338d92.tar.bz2
volse-hubzilla-8517e7e7982acde8d0683edb93e465c68d338d92.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js4
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);
}