i am using phonegap/cordova 3.5.0. in phonegap 2.9.1 it was working fine.
here is code <ion-content padding="true" overflow-scroll="true" scroll="true" scrollbar-y="true" has-bouncing="true" style="background-color: #fbfbfb; ">
Does HW acceleration work with JS scrolling? It seems that on Android 4.4 disabling overflow-scroll makes scrolling very choppy.
I’ve read some Ionic forums suggesting that Android is ahead of iOS in WebKit etc, but it seems to me that Android is always the problem in getting good performance, across the board. I haven’t seen 1 Android device that does everything well - scroll, switch ion-tabs, etc. Is this normal? Or am I doing something wrong?
Just wanted to add my 2 cents if someone arrives here looking for help, had bounce working once and then it stopped. Had this written: <ion-content class=" has-header" scroll="true" has-bouncing="true">
Changed into this and bouncing came back: <ion-content class="has-header" overflow-scroll="false" has-bouncing="true">