mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-04 12:51:12 -05:00
13 lines
362 B
CoffeeScript
13 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)
|