Przeglądaj źródła

login button sets mainMenu to root

Kris Blassingame 6 lat temu
rodzic
commit
2b2dadbf5d

+ 1
- 1
frontEnd/src/app/app.component.ts Wyświetl plik

@@ -9,7 +9,7 @@ import { RegisterPage } from '../pages/register/register';
9 9
   templateUrl: 'app.html'
10 10
 })
11 11
 export class MyApp {
12
-  rootPage:any = RegisterPage;
12
+  rootPage:any = HomePage;
13 13
 
14 14
   constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
15 15
     platform.ready().then(() => {

+ 1
- 1
frontEnd/src/pages/home/home.ts Wyświetl plik

@@ -14,7 +14,7 @@ export class HomePage {
14 14
   }
15 15
 
16 16
   login() {
17
-    this.navCtrl.push(MainMenuPage);
17
+    this.navCtrl.setRoot(MainMenuPage);
18 18
   }
19 19
 
20 20
   register() {