Browse Source

avoid that all avatars are copied to the author row when editing comments

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
tags/v11.0RC2
Arthur Schiwon 7 years ago
parent
commit
ab3954745c
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/comments/js/commentstabview.js

+ 1
- 1
apps/comments/js/commentstabview.js View File

@@ -307,7 +307,7 @@
$formRow.find('textarea').on('keydown input change', this._onTypeComment);

// copy avatar element from original to avoid flickering
$formRow.find('.avatar').replaceWith($comment.find('.avatar').clone());
$formRow.find('.avatar:first').replaceWith($comment.find('.avatar:first').clone());
$formRow.find('.has-tooltip').tooltip();

// Enable autosize

Loading…
Cancel
Save