Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
style(Exchange): make timeout even shorter
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Dec 21, 2017
1 parent f845aa6 commit cf934c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function ExchangeCheckoutController (Env, AngularHelper, $scope, $rootScope, $ti
.finally($scope.resetFields).finally(() => $scope.busy = false);
} else {
$q.resolve(this.onSuccess({quote, frequency, endTime}))
.then($scope.resetFields).then(() => $timeout(() => $scope.busy = false, 1000));
.then($scope.resetFields).then(() => $timeout(() => $scope.busy = false, 300));
}
};

Expand Down

0 comments on commit cf934c3

Please sign in to comment.