Commit 419bff80 authored by Jacob Schatz's avatar Jacob Schatz

Removing initial `,`.

parent 62571ae1
......@@ -66,9 +66,10 @@ class @AwardsHandler
addMeToAuthorList: (emoji) ->
award_block = @findEmojiIcon(emoji).parent()
authors = award_block.attr("data-original-title").split(", ")
authors = award_block.attr("data-original-title").trim().split(", ")
if authors.indexOf("me") == -1
authors.push("me")
console.log('authors');
award_block.attr("title", authors.join(", "))
@resetTooltip(award_block)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment