Refactor AccountSettingsView to use view in template

This commit is contained in:
Scott Erickson 2015-10-21 17:09:49 -07:00
parent 9a29c26cc8
commit 680eb04285
2 changed files with 7 additions and 7 deletions

View file

@ -62,6 +62,8 @@ else
button#delete-account-btn.btn.form-control.btn-primary(data-i18n="account_settings.delete_this_account")
.col-md-6
- var subs = view.getEmailSubsDict();
#email-panel.panel.panel-default
.panel-heading

View file

@ -28,13 +28,11 @@ module.exports = class AccountSettingsView extends CocoView
super()
@openModalView new AuthModal() if me.get('anonymous')
getRenderData: ->
c = super()
return c unless me
c.subs = {}
c.subs[sub] = 1 for sub in me.getEnabledEmails()
c
getEmailSubsDict: ->
subs = {}
return subs unless me
subs[sub] = 1 for sub in me.getEnabledEmails()
return subs
#- Form input callbacks
onChangePanelInput: (e) ->