mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Fixed #2870.
This commit is contained in:
parent
d7f88c3d95
commit
39f8a8a8af
2 changed files with 3 additions and 2 deletions
app
|
@ -1,7 +1,7 @@
|
|||
extends /templates/core/modal-base
|
||||
|
||||
block modal-header-content
|
||||
h3(data-i18n="#{currentNew}") Create New #{modelLabel}
|
||||
h3(data-i18n="#{newModelTitle}") Create New #{modelLabel}
|
||||
|
||||
block modal-body-content
|
||||
form.form
|
||||
|
|
|
@ -15,13 +15,14 @@ module.exports = class NewModelModal extends ModalView
|
|||
super options
|
||||
@modelClass = options.model
|
||||
@modelLabel = options.modelLabel
|
||||
@newModelTitle = "editor.new_#{_.string.slugify @modelLabel}_title"
|
||||
@properties = options.properties
|
||||
$('#name').ready @focusOnName
|
||||
|
||||
getRenderData: ->
|
||||
c = super()
|
||||
c.modelLabel = @modelLabel
|
||||
#c.newModelTitle = @newModelTitle
|
||||
c.newModelTitle = @newModelTitle
|
||||
c
|
||||
|
||||
makeNewModel: ->
|
||||
|
|
Loading…
Add table
Reference in a new issue