mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
30 lines
773 B
CoffeeScript
30 lines
773 B
CoffeeScript
View = require 'views/kinds/CocoView'
|
|
template = require 'templates/play/level/tome/problem_alert'
|
|
{me} = require 'lib/auth'
|
|
|
|
module.exports = class ProblemAlertView extends View
|
|
className: 'problem-alert'
|
|
template: template
|
|
|
|
subscriptions: {}
|
|
|
|
events:
|
|
"click .close": "onRemoveClicked"
|
|
|
|
constructor: (options) ->
|
|
super options
|
|
@problem = options.problem
|
|
|
|
getRenderData: (context={}) =>
|
|
context = super context
|
|
context.message = @problem.aetherProblem.message.replace("\n", "<br>")
|
|
context
|
|
|
|
afterRender: ->
|
|
super()
|
|
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}")
|
|
|
|
onRemoveClicked: ->
|
|
@$el.remove()
|
|
@destroy()
|
|
#@problem.destroy() # let's try leaving the annotations / marker ranges alone
|