loading after click on send button

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-11 21:17:49 -03:00
commit 7340b4af29

View file

@ -145,6 +145,8 @@ angular.module('copayApp.controllers').controller('SendController',
} }
$scope.loading = true; $scope.loading = true;
$timeout(function() {
var comment = form.comment.$modelValue; var comment = form.comment.$modelValue;
var merchantData = $scope._merchantData; var merchantData = $scope._merchantData;
var address, amount; var address, amount;
@ -165,6 +167,7 @@ angular.module('copayApp.controllers').controller('SendController',
txStatus.notify(status); txStatus.notify(status);
$scope.resetForm(); $scope.resetForm();
}); });
}, 100);
}; };
// QR code Scanner // QR code Scanner