This is related to this issue where the ionRefresher overlaps on its right side(#2, Issue with 1.2.x+ (incl. 1.3.0) on Android 4.4). It only happens on Android browsers, with both the default browser and the web component
Use this code pen to reproduce it: http://codepen.io/priand/pen/rLBWyQ. It reproduces with my Samsung tablet, but not from desktop Chrome/FF…
The culprit is the .scroll.overscroll position attribute. If I change it as bellow then it works.
Not sure though if the fix is reliable, as I don’t know why the position is set this way. Can someone from ionic help?
overflow-scroll > .scroll.overscroll { position: static; /* original position: fixed; right: 0; left: 0; */ }