mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 12:31:33 +01:00
prevent duplicate blockquotes #1491
This commit is contained in:
@@ -106,7 +106,7 @@ define(['forum/pagination', 'forum/topic/threadTools', 'forum/topic/postTools',
|
||||
function addBlockquoteEllipses(blockquotes) {
|
||||
blockquotes.each(function() {
|
||||
var $this = $(this);
|
||||
if ($this.find(':hidden').length) {
|
||||
if ($this.find(':hidden').length && !$this.find('.toggle').length) {
|
||||
$this.append('<i class="fa fa-ellipsis-h pointer toggle"></i>');
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user