Try to prevent event bubbling in ion-list

Hi, I have the following setup in an ion-list tag:

<ion-list>
    <ion-item class="item item-icon-right" ng-repeat="item in items" on-hold="itemDetail({{item.id}})" on-tap="itemList({{item.id}})">
	    <i on-tap="itemAdd({{item.id}})" class="icon ion-plus"></i>
	    {{item.title}} 
    </ion-item>
</ion-list>

Now, I would like the itemAdd to be called, whenever I hit the chevron. Which is happening, thank god for that. But unfortunately, the itemList is also happening, which is sort of oK whenever the ion-item element is clicked, but not at the same time as the itemAdd event. So, is there something like jquery’s event.stopPropagation() that I can evoke in itemAdd to kill the propagation of the event?