mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
17 lines
380 B
CoffeeScript
17 lines
380 B
CoffeeScript
|
CocoView = require 'views/kinds/CocoView'
|
||
|
template = require 'templates/game-menu/guide-view'
|
||
|
{me} = require 'lib/auth'
|
||
|
ThangType = require 'models/ThangType'
|
||
|
|
||
|
module.exports = class GuideView extends CocoView
|
||
|
id: 'guide-view'
|
||
|
className: 'tab-pane'
|
||
|
template: template
|
||
|
|
||
|
getRenderData: (context={}) ->
|
||
|
context = super(context)
|
||
|
context
|
||
|
|
||
|
afterRender: ->
|
||
|
super()
|