Within an ng-include template, I have a div that is not highlighting when hovered over. Although the cursor changes to a pointer when hovering over the text, attempting to click and drag to highlight it results in nothing happening.
This issue is significant because tabbing through elements within the ng-included template is necessary for screen readability. Any thoughts on what could be causing this?
Parent template:
<div ng-controller="EntryController">
<!-- Content that functions correctly -->
<div ng-include="'entry_review.html'"></div>
</div>
entry_review.html:
<div>hello</div>
Outcome - unable to highlight "hello" by clicking and dragging, as well as unable to navigate through via tab key (which is the underlying issue).