Say I have a table and ng-click is defined both at the row level and the individual cell level:
<table>
<tbody>
<tr ng-repeat="..." ng-click="ctrl.action1()" >
<td>
<a class="..." ng-click="ctrl.action2()"><i class="..."></i></a>
</td>
</tr>
</tbody>
</table>
Which one will be executed first, action1 or action2? Is the order guaranteed? Also parallel or sequential?