Add copy to clipboard button

This commit is contained in:
Yemel Jardi 2014-08-13 13:34:47 -03:00
parent 7d27ff70cb
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');

View File

@ -11,6 +11,9 @@
</p>
<button class="m15t button secondary" open-external address="{{address.address}}">
<i class="fi-link">&nbsp;</i> Open in external application
</button><br><br>
<button class="m15t button secondary" ng-show="isMobile" ng-click="mobileCopy(address.address)">
<i class="fi-link">&nbsp;</i> Copy to clipboard
</button>
</div>
</div>