mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
11 lines
540 B
CoffeeScript
11 lines
540 B
CoffeeScript
ModalView = require 'views/kinds/ModalView'
|
|
template = require 'templates/play/level/modal/infinite_loop'
|
|
|
|
module.exports = class InfiniteLoopModal extends ModalView
|
|
id: '#infinite-loop-modal'
|
|
template: template
|
|
|
|
events:
|
|
'click #restart-level-infinite-loop-retry-button': -> Backbone.Mediator.publish 'tome:cast-spell'
|
|
'click #restart-level-infinite-loop-confirm-button': -> Backbone.Mediator.publish 'restart-level'
|
|
'click #restart-level-infinite-loop-comment-button': -> Backbone.Mediator.publish 'tome:comment-my-code'
|