mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
10 lines
233 B
CoffeeScript
10 lines
233 B
CoffeeScript
|
RootView = require 'views/core/RootView'
|
||
|
template = require 'templates/careers'
|
||
|
|
||
|
module.exports = class CareersView extends RootView
|
||
|
id: 'careers-view'
|
||
|
template: template
|
||
|
|
||
|
constructor: (options, @position) ->
|
||
|
super options
|