mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
18 lines
500 B
CoffeeScript
18 lines
500 B
CoffeeScript
ModalView = require 'views/core/ModalView'
|
|
template = require 'templates/core/diplomat-suggestion'
|
|
{me} = require 'core/auth'
|
|
forms = require 'core/forms'
|
|
|
|
module.exports = class DiplomatSuggestionModal extends ModalView
|
|
id: 'diplomat-suggestion-modal'
|
|
template: template
|
|
|
|
events:
|
|
'click #subscribe-button': 'subscribeAsDiplomat'
|
|
|
|
subscribeAsDiplomat: ->
|
|
me.setEmailSubscription 'diplomatNews', true
|
|
me.patch()
|
|
$('#email_translator').prop('checked', 1)
|
|
@hide()
|
|
return
|