Hi guys! I am creating an ionic version 1 application and I have used side menu template for it. There is a login page in my application. In that login page when I drag from left to right the side menu is displaying which is not required at a login page! How can I disable that side menu for a specific page like ‘login’? Waiting for a quick response from you guys! Thank you!
Hey @xpress,
Simply what you can do is in your login controller just add : $scope.$on('$ionicView.afterEnter', function(event) { $ionicSideMenuDelegate.canDragContent(false); })
Thanks