The new slider ion-slide in 1.2

Don’t worry about answering this. I found the solution here:

You set the binding functions in the options. Here is a snippet from that post.

$scope.swiperOptions = { /* Whatever options */ effect: 'slide', initialSlide: 0, /* Initialize a scope variable with the swiper */ onInit: function(swiper){ $scope.swiper = swiper; }, onSlideChangeEnd: function(swiper){ console.log('The active index is ' + swiper.activeIndex); } };