1
0
Fork 0
mirror of https://github.com/sensebox/blockly-app synced 2025-04-05 17:30:28 +02:00

dev: make ota-wizard the app landing page

for ease of development. revert this when done!
This commit is contained in:
Norwin 2018-11-07 03:52:08 +01:00
parent 7ae033268b
commit ff3446ce0a

View file

@ -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.