travis-web/app/views/profile-accounts.coffee
2015-03-23 16:50:04 +01:00

13 lines
277 B
CoffeeScript

`import BasicView from 'travis/views/basic'`
View = BasicView.extend
tabBinding: 'controller.tab'
classNames: ['profile-orglist']
templateName: 'profile/accounts'
classAccounts: (->
'active' if @get('tab') == 'accounts'
).property('tab')
`export default View`