mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
23 lines
705 B
CoffeeScript
23 lines
705 B
CoffeeScript
SearchView = require 'views/kinds/SearchView'
|
|
|
|
module.exports = class ThangTypeHomeView extends SearchView
|
|
id: 'thang-type-home-view'
|
|
modelLabel: 'Thang Type'
|
|
model: require 'models/ThangType'
|
|
modelURL: '/db/thang.type'
|
|
tableTemplate: require 'templates/editor/thang/table'
|
|
|
|
getRenderData: ->
|
|
context = super()
|
|
context.currentEditor = 'editor.thang_title'
|
|
context.currentNew = 'editor.new_thang_title'
|
|
context.currentNewSignup = 'editor.new_thang_title_login'
|
|
context.currentSearch = 'editor.thang_search_title'
|
|
@$el.i18n()
|
|
context
|
|
|
|
onSearchChange: =>
|
|
super()
|
|
@$el.find('img').error(-> $(this).hide())
|
|
|
|
# TODO: do the new thing on click, not just enter
|