I'm just trying to use $location.path() in my controller but also passing a custom variable as a parameter. So it would look something like this I guess:
$scope.parameter = 'Foo';
$location.path('/myURL/' + $scope.parameter);
But that doesn't work. Anyone know how this is supposed to be done in Angular?