Hey! I have two questions:
How to disable swipe right for open side menu?
How to back to previous view with swipe left like native iOS 7?
You can use $rootScope.sideMenuController.left.isEnabled = false; to disable the swipe. As for the other funcionality maybe you need to include a gesture but i haven’t work with that.
Long conversation on that topic here.
So in my index.html, I have my file structured like so:
<body ng-app="starter">
<nav-bar class="nav-title-slide-ios7" type="bar-positive" left-buttons="leftButtons" right-buttons="rightButtons" hide-back-button="true"></nav-bar>
<!-- where the initial view template will be rendered -->
<nav-view animation="slide-left-right"></nav-view>
</body>
But for my partials, one of them has a slide menu and it does not play well with the nav-bar. Basically, I get the slide menu functionality b…