Fix gravatar on amount/confirm views

This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-29 10:10:53 -03:00
commit ec58b42f3e
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
angular.element($window).off('keydown');
});
$scope.$on("$ionicView.enter", function(event, data) {
$scope.$on("$ionicView.beforeEnter", function(event, data) {
$scope.isWallet = data.stateParams.isWallet;
$scope.isCard = data.stateParams.isCard;

View file

@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
var cachedTxp = {};
var isChromeApp = platformInfo.isChromeApp;
$scope.$on("$ionicView.enter", function(event, data) {
$scope.$on("$ionicView.beforeEnter", function(event, data) {
$scope.isWallet = data.stateParams.isWallet;
$scope.isCard = data.stateParams.isCard;
$scope.toAmount = data.stateParams.toAmount;