From 86a725240b8a235d2d395bab879ee566b2a55384 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 7 Aug 2014 15:15:02 -0700 Subject: [PATCH] paypro: minor - fix notification text. --- js/controllers/send.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/controllers/send.js b/js/controllers/send.js index 8ed95b34c..96eb79c11 100644 --- a/js/controllers/send.js +++ b/js/controllers/send.js @@ -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); } }