add customConfig hideStatusBar to feedback routes

This commit is contained in:
Marty Alcala 2016-11-16 12:44:05 -05:00
commit 2ef2ce7046
2 changed files with 18 additions and 5 deletions

View file

@ -52,7 +52,8 @@ angular.module('copayApp.controllers').controller('tabHomeController',
}
var now = moment().unix();
var timeExceeded = (now - feedbackInfo.time) >= 24 * 60 * 60;
$scope.showRateCard.value = timeExceeded && !feedbackInfo.sent;
// $scope.showRateCard.value = timeExceeded && !feedbackInfo.sent;
$scope.showRateCard.value = true;
$timeout(function() {
$scope.$apply();
});