I have a table where each row has a checkbox. The table-row listen to ng-click and the checkbox to ng-change:
<tr ng-repeat="box in boxList | box_expect:searchText" ng-click="openBox(box._id)">
<td>...</td>
<td>...</td>
<td>...</td>
<td><input type="checkbox" ng-change="checkBoxChanged(id)" ...></td>
</tr>
Everytime I click the checkbox, I trigger the ng-click event of the table row.
I changed ng-click to ng-doubleClick, but double-clicks on mobile devices are not comfortable to handle.
How can I fix this?
angular-touch?