Merge pull request #286 from JDonadio/ref/fee-selected

Prevent to go back after select the fee
This commit is contained in:
Jason Dreyzehner 2016-10-07 11:22:05 -04:00 committed by GitHub
commit d658a3a98c
1 changed files with 2 additions and 3 deletions

View File

@ -21,10 +21,9 @@ angular.module('copayApp.controllers').controller('preferencesFeeController', fu
configService.set(opts, function(err) {
if (err) $log.debug(err);
$scope.currentFeeLevel = newFee.level;
$ionicHistory.goBack();
$timeout(function() {
$scope.$apply();
}, 100);
});
});
};