docs(demos): menu should be enabled when section loads

This commit is contained in:
Drew Rygh
2015-11-18 13:15:14 -06:00
parent cacd9a3843
commit 2f0190371d
3 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,9 @@ import * as helpers from '../../helpers';
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class BasicPage{
constructor() {
constructor(app: IonicApp) {
this.app = app;
this.app.getComponent('leftMenu').enable(true);
}
}