I have tag with ng-click in another tag with ng-click. when i click on the internal tag, its start the two function instead of only internal function. example:
<div ng-click="gotoChat()" >
<i class="icon" ><button ng-click="Close()" class="button button-assertive">סגור בקשה</button></i>
</div>
When I click on the button tag, its start gotoChat() and Close() instead of only Close(). How can I fix it?