Files
ionic-framework/demos/sink/sink-page.ts
2015-09-11 21:40:58 -05:00

13 lines
228 B
TypeScript

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