Files
Max Lynch 1445013d0a Sink page
2015-07-06 18:15:12 -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();
}
}