Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit df58c48

Browse files
committed
0.9.27: update ion-views to use interpolated title (thanks @logbase2)
Closes #22
1 parent 5fb093f commit df58c48

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

www/templates/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
This template loads for the 'tab.about' state (app.js)
33
-->
4-
<ion-view title="'About Ionic'">
4+
<ion-view title="About Ionic">
55
<ion-content has-header="true" has-tabs="true" padding="true">
66
<img src="img/ionic.png" class="ionic-logo">
77
<p>

www/templates/adopt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
This template loads for the 'tab.adopt' state (app.js)
33
-->
4-
<ion-view title="'Adopt A Pet'">
4+
<ion-view title="Adopt A Pet">
55
<ion-content has-header="true" has-tabs="true">
66
<div class="list list-inset">
77
<label class="item item-input">

www/templates/pet-detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The PetCtrl pulls data from the Pets service (service.js)
55
The Pets service returns an array of pet data
66
-->
7-
<ion-view title="pet.title">
7+
<ion-view title="{{pet.title}}">
88
<ion-content has-header="true" padding="true">
99
<p>{{ pet.description }}</p>
1010
<p><a class="button button-small icon ion-arrow-left-b" href="#/tab/pets"> All Pets</a></p>

www/templates/pet-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
It was wired up in the app config (app.js)
44
The 'pets' data comes from its $scope within PetIndexCtrl (controller.js)
55
-->
6-
<ion-view title="'Pet Information'">
6+
<ion-view title="Pet Information">
77
<ion-content has-header="true" has-tabs="true">
88

99
<ion-list>

0 commit comments

Comments
 (0)