Hey everyone,
I had a few of my AngularJS services being called twice. The issue turned out to be that I’d added a controller to both my route and my view:
app.config(function ($routeProvider) { $routeProvider .when('/', { controller: 'ProjectsController', /* <---- here */ templateUrl: '/Home/Home' })
<!--
- {{project.Name}}
Removing it from the controller resolved the issue. Check out the following StackOverflow post for more info: http://stackoverflow.com/a/15535724/522859
Leave a Reply