I have a list and each item of the list is clickable.
I want that each item should be clickable only one time.
Once someone click on it, it will be disable or not clickable for second time.
My code is Like folowing:
<li data-ng-repeat="item in items">
<a id="{{item.id}}" data-ng-click="insertRecord(item.id)" data-ng-controller="addCtrl">
{{item.name}}
</a>
</li>