mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
11 lines
359 B
CoffeeScript
11 lines
359 B
CoffeeScript
View = require 'views/kinds/ModalView'
|
|
template = require 'templates/play/level/modal/reload'
|
|
|
|
# let's implement this once we have the docs database schema set up
|
|
|
|
module.exports = class ReloadModal extends View
|
|
id: '#reload-code-modal'
|
|
template: template
|
|
|
|
events:
|
|
'click #restart-level-confirm-button': -> Backbone.Mediator.publish 'restart-level'
|