mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
15 lines
321 B
CoffeeScript
15 lines
321 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
|
||
|
|
||
|
getRenderData: ->
|
||
|
context = super()
|
||
|
context.position = @position
|
||
|
context
|