sendflow service

This commit is contained in:
Sebastiaan Pasma 2018-08-08 16:35:49 +02:00
commit 8229d51fdd
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F

View file

@ -0,0 +1,24 @@
'use strict';
angular.module('copayApp.services').factory('sendFlowService', function ($log) {
var vm = this;
vm.amount = false;
vm.fromWalletId = false;
vm.thirdParty = false;
vm.sendMax = false;
vm.toAddress = false;
vm.toWalletId = false;
vm.initialize = function() {
$log.debug("Reinitialize Send Flow variables");
vm.amount = false;
vm.fromWalletId = false;
vm.thirdParty = false;
vm.sendMax = false;
vm.toAddress = false;
vm.toWalletId = false;
};
return vm;
});