It seems to me that using ng-repeat on swiper slides disables the possibility to use slides within slides. See JsFiddle link. It contains 4 horisontal slides where slide 2 contains a vertical slide with 2 slides. It works fine, but if I change the HTML
<!-- This works:-->
<div class="swiper-slide">
To:
<!-- This works:-->
<div class="swiper-slide" ng-repeat=”let in letArr”>
Then I get (as expected) 5 horizontal slides where slide 2 now are two slides: slide 2a and 2b. But I do not get any vertical slides (which I expected) on slide 2a and 2b. The pagination bullets for vertical slide selection are visible but they do not respond. Is that simply working as designed or am I missing something?
I can expand manually in the HTML my outer slide gallery but it will make maintenance difficult and errorprone.