add subject to social plugins

This commit is contained in:
Matias Alejo Garcia 2015-04-26 17:44:54 -03:00
parent a8f882472d
commit bffd86b29d
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
};

View File

@ -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);
}
};