Merge pull request #146 from cmgustavo/ref/design-38

Ref/design 38
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-21 12:10:34 -03:00 committed by GitHub
commit 5527cccc38
50 changed files with 62 additions and 82 deletions

View file

@ -28,9 +28,9 @@ angular.module('copayApp.controllers').controller('buyAmazonController',
};
this.confirm = function() {
var title = gettextCatalog.getString('Confirm Amazon.com Gift Card purchase for ${{amount}} USD', {amount: $scope.fiat});
var message = gettextCatalog.getString('Amazon.com Gift Card purchase for ${{amount}} USD', {amount: $scope.fiat});
var ok = gettextCatalog.getString('Buy');
popupService.showConfirm(title, null, ok, null, function(res) {
popupService.showConfirm(null, message, ok, null, function(res) {
if (res) self.createTx();
});
};