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

@ -31,10 +31,6 @@ angular.module('copayApp.controllers').controller('completeController', function
};
$scope.$on("$ionicView.beforeEnter", function(event, data) {
if (window.StatusBar) {
$log.debug('Hiding status bar...');
StatusBar.hide();
}
storageService.getFeedbackInfo(function(error, info) {
var feedbackInfo = lodash.isString(info) ? JSON.parse(info) : null;
@ -95,13 +91,6 @@ angular.module('copayApp.controllers').controller('completeController', function
}, 100);
});
$scope.$on("$ionicView.afterLeave", function() {
if (window.StatusBar) {
$log.debug('Showing status bar...');
StatusBar.show();
}
});
$scope.close = function() {
$ionicHistory.clearHistory();
$ionicHistory.nextViewOptions({