chore(demos): move app tests to demos

This commit is contained in:
Tim Lancina
2015-09-09 15:49:06 -05:00
parent 347c8877a4
commit 50a4549e8e
74 changed files with 111 additions and 0 deletions

12
demos/sink/sink-page.ts Normal file
View File

@ -0,0 +1,12 @@
/**
* 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();
}
}