Skip to content

Commit

Permalink
Step 17.8: Remove the login test code
Browse files Browse the repository at this point in the history
  • Loading branch information
darkbasic committed Jun 13, 2017
1 parent bd1d9c0 commit c3c1cf6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
6 changes: 0 additions & 6 deletions src/pages/login/login.html
Expand Up @@ -22,10 +22,4 @@
<ion-item>
<ion-input [(ngModel)]="phone" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your phone number"></ion-input>
</ion-item>

<ion-item>
<ion-buttons>
<button ion-button (click)="loginFacebook()">Login with Facebook</button>
</ion-buttons>
</ion-item>
</ion-content>
15 changes: 0 additions & 15 deletions src/pages/login/login.ts
Expand Up @@ -50,21 +50,6 @@ export class LoginPage implements AfterContentInit {
alert.present();
}

loginFacebook(): void {
const options = {
requestPermissions: ['public_profile', 'user_friends', 'email']
};

(<any>Meteor).loginWithFacebook(options, (error: Error) => {
if (error) {
this.handleError(error);
} else {
console.log("Logged in with Facebook succesfully.");
console.log(Meteor.user());
}
});
}

handleLogin(alert: Alert): void {
alert.dismiss().then(() => {
return this.phoneService.verify(this.phone);
Expand Down

0 comments on commit c3c1cf6

Please sign in to comment.