From dbd896218ffb26ffde434f444313d7dfddd8c34a Mon Sep 17 00:00:00 2001 From: Matias Pando Date: Fri, 24 Apr 2015 12:30:10 -0300 Subject: [PATCH] Improve message when sharing invitation code --- src/js/controllers/copayers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/controllers/copayers.js b/src/js/controllers/copayers.js index 052310484..816a5caa0 100644 --- a/src/js/controllers/copayers.js +++ b/src/js/controllers/copayers.js @@ -95,7 +95,8 @@ angular.module('copayApp.controllers').controller('copayersController', if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } - window.plugins.socialsharing.share(secret, null, null, null); + var message = 'Join my Copay wallet. Here is the invitation code ' + secret + ' You can download Copay for your phone or desktop at https://copay.io'; + window.plugins.socialsharing.share(message, null, null, null); } };