Use label helper on ssh key form

This commit is contained in:
Piotr Sarnacki 2014-12-31 15:45:53 +01:00
parent 5cfc3d44a6
commit e95e679e80
2 changed files with 3 additions and 2 deletions

View File

@ -48,6 +48,7 @@ Ember.Handlebars.registerHelper('label', (options) ->
options.hash.for = id
options.hashTypes.for = 'STRING'
options.hashContexts.for = this
options.fn = Ember.Handlebars.compile("{{view.content}}")
Ember.Handlebars.helpers.view.call(this, view, options)
)

View File

@ -1,10 +1,10 @@
<form class="ssh-key" {{action "save" on="submit"}}>
<div class="field">
<label>Description:</label>
{{label for="description" content="Description:"}}
{{input value=description}}
</div>
{{#travis-field "value"}}
<label class="value">Private Key:</label>
{{label for="value" class="value" content="Private key:"}}
{{textarea value=value}} {{travis-errors "value"}}
{{/travis-field}}