mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
13 lines
228 B
TypeScript
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();
|
|
}
|
|
}
|