update more deprecated syntax

update input action handling
This commit is contained in:
Lisa P 2015-11-13 15:06:27 +01:00 committed by Piotr Sarnacki
parent d18715858f
commit bae81542b9
8 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
{{#if view.annotations}}
<div id="annotations">
{{#each annotation in view.annotations}}
{{#each view.annotations as |annotation|}}
<div class="annotation">
<a href={{annotation.url}}>
{{annotation.status}} {{annotation.providerName}}

View File

@ -1,6 +1,6 @@
<form {{action "save" on="submit"}}>
<div class="form-elem">
{{input value=name class="env-name" on="key-up" action="nameChanged" placeholder="Name"}}
{{input value=name class="env-name" key-up="nameChanged" placeholder="Name"}}
{{#if nameIsBlank }}
<p class="form-error-message">Name cannot be blank</p>
{{/if}}

View File

@ -6,7 +6,7 @@
</a>
</div>
{{#if enabled}}
{{input pattern="/^[0-9]+$/" value=value on="key-up" action="limitChanged"}}
{{input pattern="/^[0-9]+$/" value=value key-up="limitChanged"}}
{{/if}}
{{#if isSaving}}
{{loading-indicator inline=true}}

View File

@ -17,7 +17,7 @@
</section> --}}
<ul class="dashboard-active">
{{#each repo in filteredRepositories}}
{{#each filteredRepositories as |repo|}}
{{dashboard-row repo=repo}}
{{else}}
{{no-repos}}

View File

@ -10,8 +10,8 @@
</thead>
<tbody>
{{#each event in view.events}}
{{#view "events-item" contextBinding="event"}}
{{#each view.events as |event|}}
{{#view "events-item" context="event"}}
<td class="created_at">
{{format-time createdAt}}
</td>

View File

@ -1 +1 @@
{{#each error in view.errors}}{{error.message}}{{/each}}
{{#each view.errors as |error|}}{{error.message}}{{/each}}

View File

@ -26,7 +26,7 @@
</section>
<section class="profile-orgs">
<h1>Organizations</h1>
{{#collection "accounts-list" contentBinding="organizations"}}
{{#collection "accounts-list" content="organizations"}}
{{#link-to "account" view.account class="name"}}
<div class="media">
<div class="media-elem">

View File

@ -2,13 +2,13 @@
<p>
<label>Branch:</label>
{{#if view.branches.isLoaded}}
{{view Ember.Select contentBinding="view.branches" selectionBinding="view.statusImageBranch" optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}}
{{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 contentBinding="view.formats" selectionBinding="view.statusImageFormat"}}</label>
{{view 'status-image-input' valueBinding="view.statusString" class="url" rows=3}}
<label>{{view Ember.Select content="view.formats" selection="view.statusImageFormat"}}</label>
{{view 'status-image-input' value="view.statusString" class="url" rows=3}}
</p>