A simple ng-include
causes the page to recursively print out the whole site over and over in an area of the page, this causes the browser to crash. If I change the path the same thing happens so apparently it's not even looking at the path. If i use ng-include
anywhere on the page the same weird behavior will happen.
The template (list.html) is in a sub-folder to where the angularjs scripts are.
HTML
<div ng-if="comments_data">
<div ng-include="'templates/list.html'"></div>
</div>
Template
<li ng-repeat="comment in comments_data">
{{ print_some_stuff }}
</li>
Can you check if this will be useful.