Open
Description
Hi,
I am unable to suppress the url using ng-admin. # appears in the url whenever I use ng-admin dashboard. This is giving issues in our application. Hence I used the below
myApp.config(['$routeProvider', '$locationProvider',
function($routeProvider, $locationProvider) {
$locationProvider.html5Mode(true);
}
]);
But now its not firing the rest calls to fetch the posts. Any solution please advice