mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
12 lines
362 B
CoffeeScript
12 lines
362 B
CoffeeScript
module.exports = initializeLinkedIn = ->
|
|
window.linkedInAsyncInit = ->
|
|
Backbone.Mediator.publish 'linkedin-loaded'
|
|
|
|
linkedInSnippet =
|
|
'<script type="text/javascript" async src="http://platform.linkedin.com/in.js">
|
|
api_key: 75v8mv4ictvmx6
|
|
onLoad: linkedInAsyncInit
|
|
authorize: true
|
|
</script>'
|
|
|
|
$('head').append(linkedInSnippet)
|