0

The Ionic app I'm working on displays a $ionicPopup when it starts and after closing the popup, the two sidemenus the app contains don't work at all. If I remove the popup from the code, the sidemenus work well.

Does anyone have an idea what the problem could be?

svecax
  • 369
  • 1
  • 3
  • 13

2 Answers2

0

Add the following code to the controller that contains the slidebox:

    $scope.$on('$ionicView.enter', function(){
    $ionicSlideBoxDelegate.update();
  })

I had the same problem than you. I resolved with this.

Solution

JoseCarlos
  • 58
  • 1
  • 9
0

I was facing this same problem.

In my case, this was happening because, the enable-menu-with-back-views="true" option in ion-side-menu was set false.

It got back to work when setting it to true. =)

Paulo Henrique Martins
  • 1,440
  • 1
  • 10
  • 7