angular-feeds
angular-feeds copied to clipboard
Unable to use ng-click directive on html template used in feed directive for RSS feeds
Hey there,
I have used your library for the my rss feeds. It works really well. But I have come across a problem, where I'm not able to use ng-click directive in the feed template (html) of feed directive. Please find my code below:
<div ng-repeat="feed in feeds" class="col-xs-6">
<div class="news-alerts">
<div class="news">
<h4 ng-click="deleteArrival(feed)">{{feed.title}}</h4>
</div>
</div>
</div>
Can you please help me on the same. Awaiting your prompt reply...
Thanks in advance :)
Can we see also your controller code?