paypro: minor - fix notification text.

This commit is contained in:
Christopher Jeffrey 2014-08-07 15:15:02 -07:00 committed by Manuel Araoz
parent 2c0ffa4eea
commit 86a725240b
1 changed files with 3 additions and 3 deletions

View File

@ -356,11 +356,11 @@ angular.module('copayApp.controllers').controller('SendController',
} else {
var message = 'Transaction ID: ' + txid;
if (merchantData.pr.ca) {
message += '\nThis payment protocol transaction'
message += ' This payment protocol transaction'
+ ' has been verified through ' + merchantData.pr.ca + '.';
}
message += '\nMessage from server: ' + merchantData.ack.memo;
message += '\nFor merchant: ' + merchantData.pr.pd.payment_url;
message += ' Message from server: ' + merchantData.ack.memo;
message += ' For merchant: ' + merchantData.pr.pd.payment_url;
notification.success('Transaction sent', message);
}
}