I have ons-list as follows:
<ons-list-item modifier="tappable" class="list-item" ng-repeat="item in items" ng-click="onItemSelect(item);">
<ons-row>
<ons-col width="105px">
<img ng-src="{{item.thumb}}"></img>
</ons-col>
<ons-col>
<div class="item-title">
{{ item.name }}
</div>
</ons-col>
<ons-col>
<ons-button ng-click="onClick();">Add</ons-button>
</ons-col>
</ons-row>
</ons-list-item>
There is always an effect after tapping on the list and the same thing goes when tapping on Add button.
I wonder is there any way to remove the effect when tapping on Add button on the right-side of the list?