Do not use globals to lookup views from template.
This commit is contained in:
parent
a789fdab6f
commit
2faca2e9d6
|
@ -58,9 +58,9 @@
|
|||
{{/unless}}
|
||||
|
||||
{{#if build.isMatrix}}
|
||||
{{view Travis.JobsView jobsBinding="build.requiredJobs" required="true"}}
|
||||
{{view Travis.JobsView jobsBinding="build.allowedFailureJobs"}}
|
||||
{{view 'jobs' jobs=build.requiredJobs required="true"}}
|
||||
{{view 'jobs' jobs=build.allowedFailureJobs}}
|
||||
{{else}}
|
||||
{{view Travis.LogView jobBinding="build.jobs.firstObject"}}
|
||||
{{view 'log' job=build.jobs.firstObject}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{{#each job in view.jobs}}
|
||||
{{#view Travis.JobsItemView contextBinding="job"}}
|
||||
{{#view 'jobs-item' context=job}}
|
||||
<td class="number">
|
||||
<span class="status"></span>
|
||||
{{#if job.id}}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<div id="search_box">
|
||||
{{view Ember.TextField valueBinding="controller.search" placeholder="Search all repositories"}}
|
||||
{{input value=controller.search placeholder="Search all repositories"}}
|
||||
</div>
|
||||
|
||||
{{view Travis.ReposListTabsView}}
|
||||
{{view 'repos-list-tabs'}}
|
||||
|
||||
<div class="tab">
|
||||
{{#if isLoaded}}
|
||||
{{#collection Travis.ReposListView contentBinding="this"}}
|
||||
{{#collection 'repos-list' content=this}}
|
||||
{{#with view.repo}}
|
||||
<div class="slug-and-status">
|
||||
<span class="status"></span>
|
||||
|
|
|
@ -7,13 +7,13 @@
|
|||
<div id="repo-header">
|
||||
<h3>{{#link-to "repo" this}}{{slug}}{{/link-to}}</h3>
|
||||
<div class="github-icon"><a {{bind-attr href="controller.urlGithub"}}><img src="/images/icons/github.svg" width="21" height="21"/></a></div>
|
||||
{{view Travis.RepoShowToolsView}}
|
||||
{{view 'repo-show-tools'}}
|
||||
</div>
|
||||
|
||||
<p class="description">{{description}}</p>
|
||||
|
||||
{{view Travis.RepoShowTabsView}}
|
||||
{{view Travis.RepoActionsView}}
|
||||
{{view 'repo-show-tabs'}}
|
||||
{{view 'repo-actions'}}
|
||||
{{/with}}
|
||||
|
||||
<div class="tab">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<li id="tab_current" {{bind-attr class="view.classCurrent"}}>
|
||||
<h5>
|
||||
{{#if repo.slug}}
|
||||
{{#link-to "repo" repo currentWhen="repo.index"}}
|
||||
{{#link-to "repo" repo current-when="repo.index"}}
|
||||
Current
|
||||
{{/link-to}}
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in New Issue
Block a user