onSuccessConfirm function

This commit is contained in:
Gabriel Masclef 2017-11-07 10:24:37 -03:00
parent 0dc547c51a
commit 99bae31e32
No known key found for this signature in database
GPG Key ID: DD6D7EAADE12280D
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import * as _ from 'lodash';
// Pages
import { SendPage } from '../../send/send';
import { HomePage } from '../../home/home';
// Providers
import { ConfigProvider } from '../../../providers/config/config';
@ -611,4 +612,10 @@ export class ConfirmPage {
}
}
public onSuccessConfirm(): void {
this.sendStatus = '';
this.navCtrl.setRoot(HomePage);
this.navCtrl.popToRoot();
};
}