This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
Any event handler inside the ng-repeat loop should be binded to a parent element, for better performance.
Here's an example:
<ul>
<li ng-repeat="item in items" ng-click="go(item)">item.caption</li>
</ul>
It would be awesome if angular could automatically recognize this pattern and bind the event to a parent element (ul for example).