Fix issue with the addComment button in the toolbar

pull/1/head
yflory 5 years ago
parent 977301dfc3
commit 05f164a2e5

@ -896,7 +896,8 @@ define([
if ($target.closest('.ui-autocomplete').length) { return; } if ($target.closest('.ui-autocomplete').length) { return; }
// Add comment button? don't remove anything because this handler is called after // Add comment button? don't remove anything because this handler is called after
// the button action // the button action
if (e.target.classList.contains('cke_button__comment_icon')) { return; } if ($target.is('.cke_button__comment')) { return; }
if ($target.closest('.cke_button__comment').length) { return; }
Env.$container.find('.cp-comment-active').removeClass('cp-comment-active'); Env.$container.find('.cp-comment-active').removeClass('cp-comment-active');
Env.$inner.find('comment.active').removeClass('active'); Env.$inner.find('comment.active').removeClass('active');
Env.$container.find('.cp-comment-form').remove(); Env.$container.find('.cp-comment-form').remove();

Loading…
Cancel
Save