Removes unused variable

This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-28 10:49:20 -03:00
parent 7e86153272
commit 55f0021444
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ angular.module('copayApp.controllers').controller('topUpController', function($s
var statusChangeHandler = function (processName, showName, isOn) {
$log.debug('statusChangeHandler: ', processName, showName, isOn);
if (processName == 'topup' && !isOn && !hasError) {
if (processName == 'topup' && !isOn) {
$scope.sendStatus = 'success';
$timeout(function() {
$scope.$digest();