I want On selecting one suggestion the route to be changed to '/blood_test'
but its not happening, only getting the console.log properly
but on putting the $location.path('/blood_test');
outside the function the route is changing
$location.path('/blood_test');
autocomplete.addListener('place_changed', function() {
console.log('yoyoyoyo');
$location.path('/blood_test');
});
autocomplete.addListener('place_changed', function() {
console.log('yoyoyoyo');
$location.path('/blood_test');
});
I expect the change of route to '/blood_test' but its staying in the same route.