Share address button for mobile
This commit is contained in:
parent
77f8faaae6
commit
3ab53e5abf
3 changed files with 16 additions and 0 deletions
|
|
@ -17,9 +17,16 @@ angular.module('copayApp.controllers').controller('ReceiveController',
|
|||
}
|
||||
};
|
||||
|
||||
$scope.shareAddress = function(addr) {
|
||||
if (isCordova) {
|
||||
window.plugins.socialsharing.share('My bitcoin address: ' + addr);
|
||||
}
|
||||
};
|
||||
|
||||
$scope.init = function() {
|
||||
$rootScope.title = 'Receive';
|
||||
$scope.showAll = false;
|
||||
$scope.isCordova = isCordova;
|
||||
|
||||
var w = $rootScope.wallet;
|
||||
var lastAddr = _.first(w.getAddressesOrdered());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue