Fix mobile response

This commit is contained in:
Gustavo Maximiliano Cortez 2016-05-19 20:20:06 -03:00
commit a63a8e4aaa
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 11 additions and 0 deletions

View file

@ -15,6 +15,9 @@ angular.module('copayApp.controllers').controller('amazonController',
return;
}
self.giftCards = gcds;
$timeout(function() {
$scope.$digest();
});
});
};
@ -69,6 +72,9 @@ angular.module('copayApp.controllers').controller('amazonController',
return;
}
$scope.card = data;
$timeout(function() {
$scope.$digest();
});
});
};