mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
12 lines
405 B
CoffeeScript
12 lines
405 B
CoffeeScript
module.exports = initializeTwitter = ->
|
|
((d, s, id) ->
|
|
js = undefined
|
|
fjs = d.getElementsByTagName(s)[0]
|
|
p = (if /^http:/.test(d.location) then 'http' else 'https')
|
|
unless d.getElementById(id)
|
|
js = d.createElement(s)
|
|
js.id = id
|
|
js.src = p + '://platform.twitter.com/widgets.js'
|
|
fjs.parentNode.insertBefore js, fjs
|
|
return
|
|
) document, 'script', 'twitter-wjs'
|