Skip to content

Commit

Permalink
fix(templates): Update seed app to use interpolaated title
Browse files Browse the repository at this point in the history
  • Loading branch information
diegonetto committed Mar 23, 2014
1 parent 89ecac8 commit f3b7ffe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/common/root/app/templates/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
This template loads for the 'tab.about' state (app.js)
-->
<ion-view title="'About Ionic'">
<ion-view title="About Ionic">
<ion-content has-header="true" has-tabs="true" padding="true">
<img src="images/ionic.png" class="ionic-logo">
<p>
Expand Down
2 changes: 1 addition & 1 deletion templates/common/root/app/templates/adopt.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
This template loads for the 'tab.adopt' state (app.js)
-->
<ion-view title="'Adopt A Pet'">
<ion-view title="Adopt A Pet">
<ion-content has-header="true" has-tabs="true">
<div class="list list-inset">
<label class="item item-input">
Expand Down
2 changes: 1 addition & 1 deletion templates/common/root/app/templates/pet-detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
The PetCtrl pulls data from the Pets service (service.js)
The Pets service returns an array of pet data
-->
<ion-view title="pet.title">
<ion-view title="{{pet.title}}">
<ion-content has-header="true" padding="true">
<p>{{ pet.description }}</p>
<p><a class="button button-small icon ion-arrow-left-b" href="#/tab/pets"> All Pets</a></p>
Expand Down
2 changes: 1 addition & 1 deletion templates/common/root/app/templates/pet-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
It was wired up in the app config (app.js)
The 'pets' data comes from its $scope within PetIndexCtrl (controller.js)
-->
<ion-view title="'Pet Information'">
<ion-view title="Pet Information">
<ion-content has-header="true" has-tabs="true">

<ion-list>
Expand Down

0 comments on commit f3b7ffe

Please sign in to comment.