
Fixes https://github.com/travis-ci/travis-web/issues/235 Note the height attribute is removed from `#status-image`. We now let browser decide how tall the popup will be.
38 lines
1.3 KiB
Handlebars
38 lines
1.3 KiB
Handlebars
<a href="#" class="close" {{action "close" target="view"}}></a>
|
|
<p>
|
|
<label>{{t repositories.branch}}:</label>
|
|
{{#if view.branches.isLoaded}}
|
|
{{view Ember.Select contentBinding="view.branches" selectionBinding="view.statusImageBranch" optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}}
|
|
{{else}}
|
|
<span class="loading"></span>
|
|
{{/if}}
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.image_url}}:</label>
|
|
<input type="text" class="url" {{bind-attr value="view.statusImageUrl"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.markdown}}:</label>
|
|
<input type="text" class="markdown" {{bind-attr value="view.markdownStatusImage"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.textile}}:</label>
|
|
<input type="text" class="textile" {{bind-attr value="view.textileStatusImage"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.rdoc}}:</label>
|
|
<input type="text" class="rdoc" {{bind-attr value="view.rdocStatusImage"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.asciidoc}}:</label>
|
|
<input type="text" class="asciidoc" {{bind-attr value="view.asciidocStatusImage"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.rst}}:</label>
|
|
<input type="text" class="rst" {{bind-attr value="view.rstStatusImage"}}></input>
|
|
</p>
|
|
<p>
|
|
<label>{{t repositories.pod}}:</label>
|
|
<input type="text" class="pod" {{bind-attr value="view.podStatusImage"}}></input>
|
|
</p>
|