mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
Merge branch 'master' of https://github.com/codecombat/codecombat
This commit is contained in:
commit
441cf8c339
2 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,8 @@ module.exports =
|
|||
'auth:facebook-api-loaded': c.object {}
|
||||
|
||||
'auth:logging-in-with-facebook': c.object {}
|
||||
|
||||
'auth:logging-out': c.object {}
|
||||
|
||||
'auth:logged-in-with-facebook': c.object {title: 'Facebook logged in', description: 'Published when you successfully logged in with Facebook', required: ['response']},
|
||||
response:
|
||||
|
|
|
@ -43,6 +43,7 @@ module.exports = class RootView extends CocoView
|
|||
success: (achievement) => @showNewAchievement(achievement, earnedAchievement)
|
||||
|
||||
logoutAccount: ->
|
||||
Backbone.Mediator.publish("auth:logging-out")
|
||||
window.tracker?.trackEvent 'Homepage', Action: 'Log Out' if @id is 'home-view'
|
||||
logoutUser($('#login-email').val())
|
||||
|
||||
|
|
Loading…
Reference in a new issue