From 8a201d89597ddf793ecc63a702d3234681d27638 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 1 Oct 2015 16:12:14 -0500 Subject: [PATCH] fix(content): add back get/setContent methods --- ionic/components/nav/view-controller.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ionic/components/nav/view-controller.ts b/ionic/components/nav/view-controller.ts index 3a1a900165..9808725fd7 100644 --- a/ionic/components/nav/view-controller.ts +++ b/ionic/components/nav/view-controller.ts @@ -19,6 +19,14 @@ export class ViewController { this.navbarTemplateRef = null; } + setContent(content) { + this._content = content; + } + + getContent() { + return this._content; + } + /** * @private */