mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
16 lines
571 B
CoffeeScript
16 lines
571 B
CoffeeScript
module.exports = initializeGoogle = ->
|
|
window.onGPlusLoaded = ->
|
|
Backbone.Mediator.publish 'auth:gplus-api-loaded', {}
|
|
return
|
|
window.signinCallback = (authResult) ->
|
|
Backbone.Mediator.publish 'auth:logged-in-with-gplus', authResult if authResult.access_token
|
|
return
|
|
(->
|
|
po = document.createElement('script')
|
|
po.type = 'text/javascript'
|
|
po.async = true
|
|
po.src = 'https://apis.google.com/js/client:plusone.js?onload=onGPlusLoaded'
|
|
s = document.getElementsByTagName('script')[0]
|
|
s.parentNode.insertBefore po, s
|
|
return
|
|
)()
|