Fix the situation where the user has named themselves "me"

Stopped looking for existing user since remove functionality is fixed.
This commit is contained in:
Jacob Schatz 2016-01-18 19:27:59 -05:00
parent c298068c45
commit c426a571db
1 changed files with 2 additions and 4 deletions

View File

@ -59,7 +59,6 @@ class @AwardsHandler
removeMeFromAuthorList: (emoji) ->
award_block = @findEmojiIcon(emoji).parent()
authors = award_block.attr("data-original-title").split(", ")
if authors.indexOf("me") != -1
authors.splice(authors.indexOf("me"),1)
award_block.closest(".award").attr("data-original-title", authors.join(", "))
@resetTooltip(award_block)
@ -70,7 +69,6 @@ class @AwardsHandler
authors = []
if origTitle
authors = origTitle.split(', ')
if authors.indexOf("me") == -1
authors.push("me")
award_block.attr("title", authors.join(", "))
@resetTooltip(award_block)