sendflow service integrated into flow

This commit is contained in:
Sebastiaan Pasma 2018-08-08 17:10:47 +02:00
commit f7ecdb2f2f
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
7 changed files with 73 additions and 60 deletions

View file

@ -20,5 +20,12 @@ angular.module('copayApp.services').factory('sendFlowService', function ($log) {
vm.toWalletId = false;
};
vm.map = function(params) {
Object.keys(params).map(function(key, index) {
vm[key] = params[key];
});
console.log(vm);
};
return vm;
});