24 lines
520 B
JavaScript
24 lines
520 B
JavaScript
|
|
'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;
|
||
|
|
});
|