Browse Source

minor updates to menu

Rachelle 6 years ago
parent
commit
77b39427ec

+ 5
- 4
MyPassionProjectClient/src/pages/settings/settings.html View File

1
 <ion-header>
1
 <ion-header>
2
     <ion-navbar>
2
     <ion-navbar>
3
+        <ion-buttons start>
4
+            <button ion-button menuToggle>
5
+            <ion-icon name="menu"></ion-icon>
6
+          </button>
7
+        </ion-buttons>
3
       <ion-title>Settings</ion-title>
8
       <ion-title>Settings</ion-title>
4
       <ion-buttons end>
9
       <ion-buttons end>
5
-          <button ion-button (click)="dismiss()">
6
-            <span ion-text showWhen="ios,core">Done</span>
7
-            <ion-icon name="md-close" showWhen="android,windows"></ion-icon>
8
-          </button>
9
         </ion-buttons>
10
         </ion-buttons>
10
     </ion-navbar>
11
     </ion-navbar>
11
   </ion-header>
12
   </ion-header>

+ 0
- 4
MyPassionProjectClient/src/pages/settings/settings.ts View File

28
     modal.present();
28
     modal.present();
29
   }
29
   }
30
 
30
 
31
-  dismiss() {
32
-    this.navCtrl.setRoot(ProfilePage);
33
-  }
34
-
35
 }
31
 }

+ 1
- 1
MyPassionProjectClient/src/providers/users-service.ts View File

4
 
4
 
5
 @Injectable()
5
 @Injectable()
6
 export class UsersService{
6
 export class UsersService{
7
-  public API = "http://localhost:8080";
7
+  public API = "http://rchung.rchung.ultrahook.com";
8
   public USERS_API = this.API + "/users";
8
   public USERS_API = this.API + "/users";
9
   userName: String;
9
   userName: String;
10
 
10