summaryrefslogtreecommitdiffstats
path: root/client/components/activities/comments.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-12-17 23:42:30 +0200
committerLauri Ojansivu <x@xet7.org>2019-12-17 23:42:30 +0200
commit3b3950369ce07aa9e6fc4ab1bef9fb8a4993e398 (patch)
treec38869d02bd5f31f55b4dd4d15df7982b837c40c /client/components/activities/comments.js
parenta4dbe982991acc50a3c200f65af1377ce9499fa1 (diff)
downloadwekan-3b3950369ce07aa9e6fc4ab1bef9fb8a4993e398.tar.gz
wekan-3b3950369ce07aa9e6fc4ab1bef9fb8a4993e398.tar.bz2
wekan-3b3950369ce07aa9e6fc4ab1bef9fb8a4993e398.zip
Fix comment text disappearing when clicking outside of comment text area.
Fix lint error. Thanks to xet7 !
Diffstat (limited to 'client/components/activities/comments.js')
-rw-r--r--client/components/activities/comments.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/client/components/activities/comments.js b/client/components/activities/comments.js
index 95084646..50ca019b 100644
--- a/client/components/activities/comments.js
+++ b/client/components/activities/comments.js
@@ -16,9 +16,6 @@ BlazeComponent.extendComponent({
events() {
return [
{
- 'click .js-new-comment:not(.focus)'() {
- commentFormIsOpen.set(true);
- },
'submit .js-new-comment-form'(evt) {
const input = this.getInput();
const text = input.val().trim();