mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
9 lines
292 B
CoffeeScript
Executable file
9 lines
292 B
CoffeeScript
Executable file
VersionsModal = require 'views/editor/modal/VersionsModal'
|
|
|
|
module.exports = class SystemVersionsModal extends VersionsModal
|
|
id: 'editor-system-versions-view'
|
|
url: '/db/level.system/'
|
|
page: 'system'
|
|
|
|
constructor: (options, @ID) ->
|
|
super options, @ID, require 'models/LevelSystem'
|