As an angular newbie trying to understand how things are done
I have a list of links like the following
<ul>
<li><a href="/a">a</a></li>
<li><a href="/b">b</a></li>
<li><a href="/c">c</a></li>
</ul>
Currently I am outputting that as a transcluded html using a directive. One of these links is the page I am actually on ( I guess this is not available in routes etc. because app only uses directives, so any solution that is not directive based shouldn't work)
If I am on page a how do I remove the list item that has a link to page a?