I know this looks basic. But I could not find whether its a bug in the RC code or issue in my code.
I am getting the below error in the browser console. I am using the latest RC version.
Error: [$injector:modulerr] Failed to instantiate module starter due to: [$injector:unpr] Unknown provider: $ionicSideMenuDelegate
This is my controller where I am using the $ionicSideMenuDelegate. Although I have injected the $ionicSideMenuDelegate, I am getting the error.
ctrl.controller('HomeCtrl', function($scope, $ionicSideMenuDelegate, Service) {
$scope.$on('$ionicView.beforeEnter', function() {
$ionicSideMenuDelegate.canDragContent(true);
});
});