Hi Guys,
I have a simple function to refresh my home view on an ng-click now this works perfectly well in chrome on my laptop but it doesn't work on my android device, I have the samsung S5 mini any ideas? here's the code for my function
$scope.goToViewHome = function(){
$state.go('home').then(function(){
$location.path('/homePage');
$state.reload('home');
$window.location.reload('homePage.html');
});
}