Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/Quotelinks/QuoteCT.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ QuoteCT =
if Conf['Comment Expansion']
ExpandComment.callbacks.push @node

# \u00A0 is nbsp
@mark = $.el 'span',
textContent: '\u00A0(Cross-thread)'
textContent: ' (Cross-thread)'
className: 'qmark-ct'
Callbacks.Post.push
name: 'Mark Cross-thread Quotes'
Expand Down
3 changes: 1 addition & 2 deletions src/Quotelinks/QuoteOP.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ QuoteOP =
if Conf['Comment Expansion']
ExpandComment.callbacks.push @node

# \u00A0 is nbsp
@mark = $.el 'span',
textContent: '\u00A0(OP)'
textContent: ' (OP)'
className: 'qmark-op'
Callbacks.Post.push
name: 'Mark OP Quotes'
Expand Down
3 changes: 1 addition & 2 deletions src/Quotelinks/QuoteYou.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ QuoteYou =
if Conf['Comment Expansion']
ExpandComment.callbacks.push @node

# \u00A0 is nbsp
@mark = $.el 'span',
textContent: '\u00A0(You)'
textContent: ' (You)'
className: 'qmark-you'
Callbacks.Post.push
name: 'Mark Quotes of You'
Expand Down
3 changes: 1 addition & 2 deletions src/classes/Post.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,8 @@ class Post
file

@deadMark =
# \u00A0 is nbsp
$.el 'span',
textContent: '\u00A0(Dead)'
textContent: ' (Dead)'
className: 'qmark-dead'

kill: (file, index=0) ->
Expand Down