Merge pull request #2618 from matiaspando/feat/shareText

Improve message when sharing invitation code
This commit is contained in:
Matias Alejo Garcia 2015-04-24 12:41:17 -03:00
commit be9de7bc3c

View file

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