Fix incorrect use of title in docs for ionNavView

The `title` attribute is no longer evaluated, and should just be a simple string value. It is correct in the ionView docs, but not here.
This commit is contained in:
Jeremy Wilken
2014-09-20 19:26:09 -05:00
parent aa7e9dd7a9
commit 9ed2b00201

View File

@@ -74,7 +74,7 @@ IonicModule.constant('$ionicNavViewConfig', {
* ```html
* <script id="home" type="text/ng-template">
* <!-- The title of the ion-view will be shown on the navbar -->
* <ion-view title="'Home'">
* <ion-view title="Home">
* <ion-content ng-controller="HomeCtrl">
* <!-- The content of the page -->
* <a href="#/music">Go to music page!</a>