I have solved my problem from these post Using Ionic’s Built in Gestures.
In Jr-crop plugin directive add the following code will work for me.
ionic.onGesture(‘touch drag dragstart dragend transform’, function(e) {
e.gesture.srcEvent.preventDefault();
e.gesture.preventDefault();
switch (e.type){
…
}
}
Thanks, @mhartington