I have injected $location service to controller. But $location service is not defined inside method. Please help.
app.controller('MainCtrl',['$scope','$location','$mdDialog','MainViewService','$http',
function($scope, $location,$mdDialog,MainViewService,$http) {
$scope.pushView = function(){
//$location.path
//$locaiton undefined <-- Problem
};
}]);