Keep elements fully within a single element.
{{if}} is implemented as an Ember.View (without an element), and children must be valid DOM.
This commit is contained in:
parent
2faca2e9d6
commit
89a3c20217
|
@ -1,15 +1,14 @@
|
||||||
{{#if view.jobs.length}}
|
{{#if view.jobs.length}}
|
||||||
|
<table {{bind-attr id=view.jobTableId}} class="list">
|
||||||
{{#if view.required}}
|
{{#if view.required}}
|
||||||
<table id="jobs" class="list">
|
<caption>
|
||||||
<caption>
|
Build Matrix
|
||||||
Build Matrix
|
</caption>
|
||||||
</caption>
|
|
||||||
{{else}}
|
{{else}}
|
||||||
<table id="allowed_failure_jobs" class="list">
|
<caption>
|
||||||
<caption>
|
Allowed Failures
|
||||||
Allowed Failures
|
<a title="What's this?" class="help open-popup" name="help-allowed_failures" {{action "popup" target="view"}}></a>
|
||||||
<a title="What's this?" class="help open-popup" name="help-allowed_failures" {{action "popup" target="view"}}></a>
|
</caption>
|
||||||
</caption>
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -3,6 +3,13 @@ Travis.reopen
|
||||||
templateName: 'jobs/list'
|
templateName: 'jobs/list'
|
||||||
buildBinding: 'controller.build'
|
buildBinding: 'controller.build'
|
||||||
|
|
||||||
|
jobTableId: Ember.computed(->
|
||||||
|
if @get('required')
|
||||||
|
'jobs'
|
||||||
|
else
|
||||||
|
'allowed_failure_jobs'
|
||||||
|
)
|
||||||
|
|
||||||
JobsItemView: Travis.View.extend
|
JobsItemView: Travis.View.extend
|
||||||
tagName: 'tr'
|
tagName: 'tr'
|
||||||
classNameBindings: ['color']
|
classNameBindings: ['color']
|
||||||
|
|
Loading…
Reference in New Issue
Block a user