Menu-toggle only works for left menu?

Hi, I checked the source code of the directive and found that it does a $scope.$eval() with the value of the menu-toggle attr.
So, what you should put there is an angular expression.

Either of:

<button menu-toggle="'left'" class="button button-icon icon ion-navicon"></button>

or

<button menu-toggle="'right'" class="button button-icon icon ion-navicon"></button>
2 Likes