add subject to social plugins
This commit is contained in:
parent
a8f882472d
commit
bffd86b29d
2 changed files with 3 additions and 3 deletions
|
|
@ -95,8 +95,8 @@ angular.module('copayApp.controllers').controller('copayersController',
|
||||||
if (isMobile.Android() || isMobile.Windows()) {
|
if (isMobile.Android() || isMobile.Windows()) {
|
||||||
window.ignoreMobilePause = true;
|
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';
|
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);
|
window.plugins.socialsharing.share(message, 'Invitation to share a Copay Wallet', null, null);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ angular.module('copayApp.controllers').controller('receiveController',
|
||||||
if (isMobile.Android() || isMobile.Windows()) {
|
if (isMobile.Android() || isMobile.Windows()) {
|
||||||
window.ignoreMobilePause = true;
|
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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue