I am working on an Ionic application that includes two side menus, one on the left and one on the right:
<ion-side-menus>
<ion-side-menu-content >
<ion-nav-bar id="main_header">
</ion-nav-bar>
<ion-nav-view></ion-nav-view>
</ion-side-menu-content>
<ion-side-menu side="left" id="sidemenuleft">
<ng-include src="'templates/menuleft.html'"></ng-include>
</ion-side-menu>
<ion-side-menu side="right" id="sidemenuright">
<ng-include src="'templates/menuright.html'"></ng-include>
</ion-side-menu>
</ion-side-menus>
In the controller, I have the ability to disable drag for both side menus:
$ionicSideMenuDelegate.canDragContent(false);
My question is: Can I disable dragging for only one specific side menu? For example, allow dragging to the left but not to the right?