mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
14 lines
321 B
CoffeeScript
14 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
|