paypro: minor - fix notification text.

This commit is contained in:
Christopher Jeffrey 2014-08-07 15:15:02 -07:00 committed by Manuel Araoz
commit 86a725240b

View file

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