Merge pull request #6299 from cmgustavo/bug/tx-details-01

Missing apply. Load data beforeEnter
This commit is contained in:
Gabriel Edgardo Bazán 2017-06-23 17:08:06 -03:00 committed by GitHub
commit dbd137f0a4
1 changed files with 3 additions and 2 deletions

View File

@ -18,9 +18,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
value: res
};
});
});
$scope.$on("$ionicView.afterEnter", function(event) {
updateTx();
listeners = [
@ -117,6 +115,9 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
updateMemo();
initActionList();
getFiatRate();
$timeout(function() {
$scope.$digest();
});
feeService.getFeeLevels(function(err, levels) {
if (err) return;