Add copy to clipboard button

This commit is contained in:
Yemel Jardi 2014-08-13 13:34:47 -03:00
commit b60e8ed407
2 changed files with 9 additions and 0 deletions

View file

@ -19,6 +19,12 @@ angular.module('copayApp.controllers').controller('AddressesController',
$scope.openAddressModal = function(address) {
var ModalInstanceCtrl = function ($scope, $modalInstance, address) {
$scope.address = address;
$scope.isMobile = !!window.cordova;
$scope.mobileCopy = function(address) {
window.cordova.plugins.clipboard.copy(address);
window.plugins.toast.showShortBottom('Copied to clipboard');
}
$scope.cancel = function () {
$modalInstance.dismiss('cancel');