docs(navbar): update docs

This commit is contained in:
mhartington
2016-02-01 22:46:11 -05:00
parent a913e3e084
commit 015361d5c0

View File

@@ -68,7 +68,7 @@ class ToolbarBackground {
* ```html
* <ion-navbar *navbar>
*
* <ion-buttons>
* <ion-buttons start>
* <button (click)="toggleItems()">
* toggle
* </button>
@@ -78,7 +78,7 @@ class ToolbarBackground {
* Page Title
* </ion-title>
*
* <ion-buttons>
* <ion-buttons end>
* <button (click)="openModal()">
* Modal
* </button>
@@ -117,6 +117,10 @@ export class Navbar extends ToolbarBase {
private _bbRef: ElementRef;
private _bbtRef: ElementRef;
private _bgRef: ElementRef;
/**
* @private
*/
@Input() hideBackButton: any;
constructor(
@@ -144,6 +148,9 @@ export class Navbar extends ToolbarBase {
}
}
/**
* @private
*/
setBackButtonText(text: string) {
this._bbText = text;
}