Jason Chaney

Results 4 comments of Jason Chaney

I fixed this issue by changing https://github.com/revolunet/angular-carousel/blob/0.3.10/dist/angular-carousel.js#L66 with `indexModel.assign(scope.$parent, index);`

Just an update, if the `ng-if="slides.length > 1"` is not present, it will not work. Otherwise, remove the $parent. This is because the indicator template uses ng-repeat which creates an...

Can we get this merged?

To support IE8: Change 'class' to 'klass' in applicable areas and then: ``` scope.breakpoint.windowSize = $window.innerWidth; ``` to ``` scope.breakpoint.windowSize = $window.innerWidth || $document[0].documentElement.clientWidth || $document[0].body.clientWidth; ``` Since IE8 does...