2014-06-15 17:19:37 -04:00
|
|
|
module.exports = initializeGoogle = ->
|
2014-06-24 14:29:43 -04:00
|
|
|
window.onGPlusLoaded = ->
|
2014-06-15 17:19:37 -04:00
|
|
|
Backbone.Mediator.publish "gapi-loaded"
|
|
|
|
return
|
2014-06-24 14:29:43 -04:00
|
|
|
window.signinCallback = (authResult) ->
|
2014-06-15 17:19:37 -04:00
|
|
|
Backbone.Mediator.publish "gplus-logged-in", 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
|
|
|
|
)()
|