I'm looking for angular-way solution for task:
Imagine, we have many rows like
<tr>
<td>
<span>click me</span>
<span style='display: none;'>i'll be shown</span>
</td>
</tr>
...[a lot as the same rows]...
All i want is to show second span and hide first, after click to first span.
p.s. really don't want to use jQuery for this issue.