How to make carrousel with bootstrap in angularjs

0

I'm a beginner in angularjs and I'm trying to make a carousel in angularjs and when I put the ng-repeat tag in the html it comments the line, the images I'm pulling from an api, follow the html

<div class="carousel-inner">
    <div class="item {{::($index === 0 ? 'active' : '')}}" ng-
repeat="slide in slides">
      <img ng-src="{{ slide.url }}" alt="" title="">
    </div>      
</div>
    
asked by anonymous 24.02.2018 / 16:31

0 answers