Files
ionic-framework/demos/sink/sink-page.ts
2015-09-09 15:49:06 -05:00

13 lines
230 B
TypeScript

/**
* Simple wrapper page for the side menu toggle.
*/
export class SinkPage {
constructor(app: IonicApp) {
this.app = app;
}
toggleMenu() {
let aside = this.app.getComponent('mainMenu');
aside.toggle();
}
}