ksachdeva / angular-swiper

Angular directive for nolimits4web/Swiper
Apache License 2.0
197 stars 94 forks source link

slideTo #10

Closed vinodhum closed 9 years ago

vinodhum commented 9 years ago

I am trying $scope.swiper.slideTo(4); but it says slideTo is not a function any idea what am I missing

ksachdeva commented 9 years ago

just tried it seems to be working for me. most likely you are not providing / initializing your swiper object

See below code -

module.controller('TestCtrl', function($scope) { $scope.swiper = {}; $scope.next = function() { $scope.swiper.slideNext(); }; });