This commit is contained in:
Gabriel Bazán 2017-09-25 11:48:55 -03:00
parent 414e1911ec
commit fe9d4e7345
2 changed files with 1 additions and 10 deletions

View File

@ -13,5 +13,4 @@
{{wallet.credentials.coin}} - {{wallet.credentials.walletId}}
</ion-card-content>
</ion-card>
<button (click)="openPopup()" ion-button>Default</button>
</ion-content>

View File

@ -1,7 +1,6 @@
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { ProfileProvider } from '../../providers/profile/profile';
import { PopupProvider } from '../../providers/popup/popup';
@Component({
selector: 'page-home',
@ -12,8 +11,7 @@ export class HomePage {
constructor(
public navCtrl: NavController,
private profile: ProfileProvider,
private popup: PopupProvider,
private profile: ProfileProvider
) {
}
@ -22,10 +20,4 @@ export class HomePage {
this.wallets = this.profile.bind();
console.log('[home.ts:20]', this.wallets); //TODO
}
openPopup() {
//this.popup._ionicAlert('Hola mi nombre es gabriel', 'si, ese es mi nombre', 'Si');
//this.popup._ionicConfirm('hola aceptas este dinerillo?', 'dinero gratis', 'Si', 'cancel');
//this.popup._ionicPrompt('Ingrese un valor', 'Ingreselo por favor', 'Si', 'no', null);
}
}