mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-29 02:25:37 -05:00
9 lines
291 B
CoffeeScript
9 lines
291 B
CoffeeScript
|
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'
|