I have a situation where angular directive and css class has same name. For example
<div class="abc" > ... </div>
I this scenario "abc" is interpreted as angular directive. How can I make angular to ignore "abc" in this particular case.
Note: I can't change name of css class nor directive.
Edit:
Few more details: Here both angular directive and css class are from third party and I should not make changes in them. So is there any way without changing directive code or class name?
ng-clickand notclick. Pick a prefix for your directves (and make sure it's notng-).