Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
10 lines
213 B
CoffeeScript
10 lines
213 B
CoffeeScript
"use strict"
|
|
|
|
App.SocialShare =
|
|
|
|
initialize: ->
|
|
$(".social-share-button a").each ->
|
|
element = $(this)
|
|
site = element.data("site")
|
|
element.append("<span class='show-for-sr'>#{site}</span>")
|