remove old status bar hiding code
This commit is contained in:
parent
1f91ba9e46
commit
46a0303586
3 changed files with 3 additions and 39 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue