Is it possible to disable an <ion-scroll>'s scroll behaviour in ionic1?

How can I disable the scroll of a ion-scroll in ionic1?

<ion-scroll direction="y" has-bouncing="false" scrollbar-y="false"></ion-scroll>

try to use

  <ion-content overflow-scroll="false">

I know how it works with other directives, but I want to do it with <ion-scroll>

Why you need to use ion-scroll only?

If I change it, I get bugs in the height of content…

have you tried $ionicScrollDelegate handler?

How is it possible when my ion-scroll is inside an item of a scrollable list?