<ion-tabs>
<ion-tab>
</ion-tab>
<ion-tab>
<ion-content class="has-header has-subheader" overflow-scroll="true" delegate-handle="myScroll" >
</ion-content>
</ion-tab>
</ion-tabs>
in my controller: I have added $ionicScrollDelegate as dependency and I’m using
$ionicScrollDelegate.$getByHandle('myScroll').scrollTop(); //To scroll to Top
The above scroll handler is working fine with overflow-scroll disabled.
With overflow-scroll disabled scrolling is jerky.
Please help me with this issue.