2014-01-03 13:32:13 -05:00
|
|
|
View = require 'views/kinds/ModalView'
|
|
|
|
template = require 'templates/modal/diplomat_suggestion'
|
2014-06-30 22:16:26 -04:00
|
|
|
{me} = require 'lib/auth'
|
|
|
|
forms = require 'lib/forms'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = class DiplomatSuggestionView extends View
|
2014-06-30 22:16:26 -04:00
|
|
|
id: 'diplomat-suggestion-modal'
|
2014-01-03 13:32:13 -05:00
|
|
|
template: template
|
|
|
|
|
|
|
|
events:
|
2014-06-30 22:16:26 -04:00
|
|
|
'click #subscribe-button': 'subscribeAsDiplomat'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
subscribeAsDiplomat: ->
|
2014-04-21 19:15:23 -04:00
|
|
|
me.setEmailSubscription 'diplomatNews', true
|
2014-06-11 16:16:17 -04:00
|
|
|
me.patch()
|
2014-06-30 22:16:26 -04:00
|
|
|
$('#email_translator').prop('checked', 1)
|
2014-01-03 13:32:13 -05:00
|
|
|
@hide()
|
|
|
|
return
|