mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
18 lines
490 B
CoffeeScript
18 lines
490 B
CoffeeScript
View = require 'views/kinds/ModalView'
|
|
template = require 'templates/modal/diplomat_suggestion'
|
|
{me} = require('lib/auth')
|
|
forms = require('lib/forms')
|
|
|
|
module.exports = class DiplomatSuggestionView extends View
|
|
id: "diplomat-suggestion-modal"
|
|
template: template
|
|
|
|
events:
|
|
"click #subscribe-button": "subscribeAsDiplomat"
|
|
|
|
subscribeAsDiplomat: ->
|
|
me.setEmailSubscription 'diplomatNews', true
|
|
me.save()
|
|
$("#email_translator").prop("checked", 1)
|
|
@hide()
|
|
return
|