From ff3446ce0adc7dbfc04e7420e4378e001558522c Mon Sep 17 00:00:00 2001 From: Norwin Roosen Date: Wed, 7 Nov 2018 03:52:08 +0100 Subject: [PATCH] dev: make ota-wizard the app landing page for ease of development. revert this when done! --- src/app/app.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index bb98170..910a864 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -4,6 +4,8 @@ import { StatusBar } from '@ionic-native/status-bar'; import { SplashScreen } from '@ionic-native/splash-screen'; import { HomePage } from '../pages/home/home'; +import { OtaWizardPage } from '../pages/ota-wizard/ota-wizard'; + @Component({ templateUrl: 'app.html' }) @@ -11,7 +13,7 @@ export class openSenseApp { @ViewChild(Nav) nav: Nav; - rootPage:any = HomePage; + rootPage:any = OtaWizardPage; // TODO: for development, revert to HomePage pages: Array<{title: string, component: any}> = [ { title: 'Home', component: HomePage }, @@ -21,8 +23,6 @@ export class openSenseApp { ]; constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) { - - platform.ready().then(() => { // Okay, so the platform is ready and our plugins are available. // Here you can do any higher level native things you might need.