Try adding overflow-scroll="false" as shown below. When they released 1.2 they switched to native scrolling so if you need javascript scrolling anywhere you need to add the overflow.
<ion-scroll zooming="true" direction="xy"
delegate-handle="zoom-pane"
class="zoom-pane"
min-zoom="1"
scrollbar-x="false" scrollbar-y="false"
ng-click="closeImgModal();"
overflow-scroll="false">
<img ng-src="{{imageSrc}}" >
</ion-scroll>