ionic Framework: how to disable bounce effect in slider box?

I'm currently working on an app that has fullscreen slides, the thing is that I want to be able to stop the bounce effect whenever I'm either on the first slide or the last slide.

That is, if I'm on the start slide, disable the bouncing effect when dragging from the left. Likewise, if i'm on the last slide, disable the bouncing effect when dragging from the right. Is there a way to implement this?

(I know that ionic has attribute name hasBounce, but that only works for the ion-content directive, and it only works for the top and the bottom)

You could use has-bouncing on ion-content

<ion-content 
   has-bouncing="false"
   start-y="55"
   padding="true"
   has-tabs="true"
   has-header="true">