As we do in the rest of the application. Note we cannot add a rule enforcing double quotes because CoffeeScript Lint does not have such rule.
8 lines
199 B
CoffeeScript
8 lines
199 B
CoffeeScript
App.SocialShare =
|
|
|
|
initialize: ->
|
|
$(".social-share-button a").each ->
|
|
element = $(this)
|
|
site = element.data("site")
|
|
element.append("<span class='show-for-sr'>#{site}</span>")
|