codecombat/app/views/account/MainAccountView.coffee
2015-12-10 19:25:42 -05:00

9 lines
No EOL
253 B
CoffeeScript

RootView = require 'views/core/RootView'
template = require 'templates/account/main-account-view'
module.exports = class MainAccountView extends RootView
id: 'main-account-view'
template: template
events:
'click .logout-btn': 'logoutAccount'