remove old status bar hiding code

This commit is contained in:
Marty Alcala 2016-11-16 13:06:02 -05:00
commit 46a0303586
3 changed files with 3 additions and 39 deletions

View file

@ -29,20 +29,6 @@ angular.module('copayApp.controllers').controller('rateAppController', function(
});
};
$scope.$on("$ionicView.beforeEnter", function() {
if(window.StatusBar){
$log.debug('Hiding status bar...');
StatusBar.hide();
}
});
$scope.$on("$ionicView.afterLeave", function() {
if(window.StatusBar){
$log.debug('Showing status bar...');
StatusBar.show();
}
});
$scope.sendFeedback = function() {
$state.go('tabs.rate.send', {
score: $scope.score