Merge pull request #3712 from HappyMushroom-TechTeam/bugfix/summernotePopover

popover needs to be destroyed anytime the details panel is closed.
reviewable/pr3715/r1
Lauri Ojansivu 4 years ago committed by GitHub
commit eaf07cef07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      client/components/activities/comments.js
  2. 1
      client/components/cards/cardDescription.js

@ -3,6 +3,7 @@ const commentFormIsOpen = new ReactiveVar(false);
BlazeComponent.extendComponent({
onDestroyed() {
commentFormIsOpen.set(false);
$(".note-popover").hide();
},
commentFormIsOpen() {

@ -3,6 +3,7 @@ const descriptionFormIsOpen = new ReactiveVar(false);
BlazeComponent.extendComponent({
onDestroyed() {
descriptionFormIsOpen.set(false);
$(".note-popover").hide();
},
descriptionFormIsOpen() {

Loading…
Cancel
Save