travis-web/app/templates/status-images.hbs
Piotr Sarnacki 573ebfd406 Fix status image popup
While fixing deprecations a `propertyBinding="foo"` calls were changed
into `property="foo"` calls, which should be `property=foo`. Otherwise
`foo` is treated as a string.
2016-01-04 11:41:50 +01:00

15 lines
515 B
Handlebars

<a href="#" class="close" {{action "close" target=view}}></a>
<p>
<label>Branch:</label>
{{#if view.branches.isLoaded}}
{{view Ember.Select content=view.branches selection=view.statusImageBranch optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}}
{{else}}
{{loading-indicator}}
{{/if}}
</p>
<p>
<label>{{view Ember.Select content=view.formats selection=view.statusImageFormat}}</label>
{{view 'status-image-input' value=view.statusString class="url" rows=3}}
</p>