From bffd86b29d193d456ce35a25cef4b78cdaaf0166 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Sun, 26 Apr 2015 17:44:54 -0300 Subject: [PATCH] add subject to social plugins --- src/js/controllers/copayers.js | 4 ++-- src/js/controllers/receive.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/js/controllers/copayers.js b/src/js/controllers/copayers.js index 816a5caa0..e045453c8 100644 --- a/src/js/controllers/copayers.js +++ b/src/js/controllers/copayers.js @@ -95,8 +95,8 @@ angular.module('copayApp.controllers').controller('copayersController', if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } - 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); + 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, 'Invitation to share a Copay Wallet', null, null); } }; diff --git a/src/js/controllers/receive.js b/src/js/controllers/receive.js index dd82b60f6..ec151ee77 100644 --- a/src/js/controllers/receive.js +++ b/src/js/controllers/receive.js @@ -55,7 +55,7 @@ angular.module('copayApp.controllers').controller('receiveController', if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } - window.plugins.socialsharing.share('bitcoin:' + addr, null, null, null); + window.plugins.socialsharing.share('bitcoin:' + addr, 'Here is my bitcoin address', null, null); } };