While building a little newsapp with ionic and Phonegap Build, I came across a problem that only happens in the Android application. When I swipe starting on the text between the <h2> or <p> tags nothing’s happening. When I start with my finger on a white area, even at the end of a paragraph, it swipes just fine. Starting from the list I can also swipe to the next panel.
I have this code several times for different newsletters inside <ion-slide-box>
<ion-slide>
<div class="row responsive-md">
<div class="col" id="articles" ng-controller="contMainNews">
<div ng-repeat="article in news|limitTo:14">
<h2>{{article.TITLE}}</h2>
<p>{{article.INTRO}}</p>
</div>
</div>
<ion-scroll scrollbar-y="false" ng-controller="contMainNews" class="col col-33">
<ion-list>
<ion-item ng-repeat="article in news">
{{article.TITLE}}
</ion-item>
</ion-list>
</ion-scroll>
</div>
</ion-slide>
In the Chrome browser on Android and in the iPad app everything works fine.
Maybe this is a Phonegap problem but I hope someone can help …