Use link-to instead of the deprecated linkTo

These were mostly removed in 8d681e85af,
but some where left over.
This commit is contained in:
Henrik Hodne 2014-04-01 00:56:31 -05:00
parent 9e167b6603
commit 433f5b7318
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ Travis.TabsView = Ember.View.extend
'<ul class="tabs">' +
' {{#each tab in tabs}}' +
' <li {{bindAttr class="tab.visible:active"}}>' +
' <h5>{{#linkTo "repo.settings.tab" tab.id}}{{tab.name}}{{/linkTo}}</h5>' +
' <h5>{{#link-to "repo.settings.tab" tab.id}}{{tab.name}}{{/link-to}}</h5>' +
' </li>' +
' {{/each}}' +
'</ul>' +

View File

@ -1,5 +1,5 @@
<div id="repo">
<h3>Settings: {{#linkTo "repo" this}}{{slug}}{{/linkTo}}</h3>
<h3>Settings: {{#link-to "repo" this}}{{slug}}{{/link-to}}</h3>
{{#travis-tabs}}
{{#travis-tab "general" "General Settings"}}

View File

@ -13,7 +13,7 @@
{{/if}}
{{#if view.displaySettingsLink}}
<li>
{{#linkTo "repo.settings" view.repo}}Settings{{/linkTo}}
{{#link-to "repo.settings" view.repo}}Settings{{/link-to}}
</li>
{{/if}}