[navPush] Check if the NavPush page exists.

When using the NavPush directive there isn't a way to disable the nav from trying to push.
This commit is contained in:
Thiery Laverdure
2016-10-27 15:44:11 -04:00
committed by GitHub
parent 855f137097
commit 61f236e0f9

View File

@@ -71,7 +71,7 @@ export class NavPush {
*/
@HostListener('click')
onClick(): boolean {
if (this._nav) {
if (this._nav && this.navPush) {
this._nav.push(this.navPush, this.navParams, null);
return false;
}