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
VersionsModalView = require 'views/modal/versions_modal'
|
|
|
|
module.exports = class SystemVersionsView extends VersionsModalView
|
|
id: 'editor-system-versions-view'
|
|
url: '/db/level.system/'
|
|
page: 'system'
|
|
|
|
constructor: (options, @ID) ->
|
|
super options, ID, require 'models/LevelSystem'
|