What can I do to point to the other ng-repeat elements from the ng-click function? I would like to modify the {{nameClass}} of the other ng-repeat elements from a click to someone of them.
Html:
<li class="{{nameclass}}" ng-repeat="person in people" ng-click="somefunction()"></li>
javascript:
function somefunction(){
this.nameclass = "some";
//what to set the other classes???
}