add scope apply

This commit is contained in:
Gabriel Bazán 2016-10-11 17:22:37 -03:00
parent dc73320aa5
commit 8749c059dd
1 changed files with 3 additions and 0 deletions

View File

@ -173,6 +173,9 @@ angular.module('copayApp.controllers').controller('tabHomeController',
$scope.hideHomeTip = function() { $scope.hideHomeTip = function() {
storageService.setHomeTipAccepted(false, function(error, value) { storageService.setHomeTipAccepted(false, function(error, value) {
$scope.homeTip = false; $scope.homeTip = false;
$timeout(function() {
$scope.$apply();
})
}); });
}; };