remove slide to delete and adding that option to addr entry view

This commit is contained in:
Gabriel Bazán 2017-05-24 16:40:07 -03:00
commit 828b174c23
4 changed files with 16 additions and 17 deletions

View file

@ -19,4 +19,14 @@ angular.module('copayApp.controllers').controller('addressbookViewController', f
}, 100);
};
$scope.remove = function(addr) {
addressbookService.remove(addr, function(err, ab) {
if (err) {
popupService.showAlert(gettextCatalog.getString('Error'), err);
return;
}
$ionicHistory.goBack();
});
};
});