I have a span
tag that looks like this:
<span ng-bind-html="item.Name | linky" ng-click="open(item)"></span>
within an ng-repeat.
I have a problem though, if item.Name
contains an email or link the linky filter changes the html and inserts an anchor tag. Now when I click the link the ng-click fires AND the anchor opens, but I only want the anchor to open and prevent ng-click from being called ...is this possible?