I\'m trying to figure out why the page doesn\'t navigate to its template when clicked. The URL updates, and I have no JS errors.. I believe it loads the file, but t
Problem with Same Symptoms
I recently solved a similar problem in one of my projects. I added console.log("Video Page Controller Loaded") into the controller I was debugging. Likewise, it logged that text until I close the tab.
My solution:
I was referenced the wrong name for the template file.
when('/videos', {
templateUrl: 'templates/video-list.tpl.html',
controller: 'VideoListCtrl'
})
When I should have had:
when('/videos', {
templateUrl: 'templates/video-list.html',
controller: 'VideoListCtrl'
})