fix(content): add back get/setContent methods

This commit is contained in:
Adam Bradley
2015-10-01 16:12:14 -05:00
parent 13ca9dabea
commit 8a201d8959

View File

@@ -19,6 +19,14 @@ export class ViewController {
this.navbarTemplateRef = null;
}
setContent(content) {
this._content = content;
}
getContent() {
return this._content;
}
/**
* @private
*/