So i'm trying to filter my ng-repeat directive by using angular unique module.. but i'm kinda lost, i followed the exact order with adding the scripts... In console i'm getting an error, 'No module: ui.utils'..
Here is my Plunker: http://plnkr.co/edit/cKJgtGyYeQdQCyARXG7j?p=preview
From this code:
<ul>
<li>nokia</li>
<li>nokia</li>
<li>samsung</li>
</ul>
i should get with -unique- this code:
<ul>
<li>nokia</li>
<li>samsung</li>
</ul>
Some good people here helped me already by using jQuery filter, but i think this is much better way of doing this.. Any help is much appreciated..