docs(nav-push): change property order (#12468)

same order as in constructor and per importance
This commit is contained in:
Jan Piotrowski
2017-08-31 20:06:53 +02:00
committed by Brandy Carney
parent 6e64b8d915
commit 4911d9f01a

View File

@@ -32,8 +32,8 @@ import { Page } from '../../navigation/nav-util';
* template: `<button ion-button [navPush]="pushPage" [navParams]="params">Go</button>`
* })
* class MyPage {
* params: Object;
* pushPage: any;
* params: Object;
* constructor(){
* this.pushPage = LoginPage;
* this.params = { id: 42 };