Ionic 1.2.1 android scroll

i update ionic to 1.2.1,
but my menu show the scroll,
how do i hide the scroll ?
image

Add
overflow-scroll="false"
to your ion-content tag might work.

Their new default native scrolling is very very buggy.
My problem began with a logo image on the login screen.
With native scrolling, switching between input fields (which would bring up keyboard) will break the screen, left me with empty white screen.
So sad! Every single time I updated the lib, thereā€™d be so many surprises.

You can try this css also

.scroll-bar-indicator {
    display: none;
}
```

try this $ionicConfigProvider.scrolling.jsScrolling(true);