Merge pull request #5024 from JDonadio/bug/next-step

Show Next Step
This commit is contained in:
Gabriel Edgardo Bazán 2016-11-14 14:11:07 -03:00 committed by GitHub
commit 7062d0a809

View file

@ -225,7 +225,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
var services = ['AmazonGiftCards', 'BitpayCard', 'BuyAndSell'];
lodash.each(services, function(service) {
storageService.getNextStep(service, function(err, value) {
$scope.externalServices[service] = value ? true : false;
$scope.externalServices[service] = value == 'true' ? true : false;
if (++i == services.length) return cb();
});
});