Incorporating the OwlCarousel jquery plugin with an ng-repeat situation in one of my views looks like this:
<div owl-carousel-item="" ng-repeat="item in items" class="item">
<img id="image{{ $index }}" data-ng-src="http://uploads.mysite.com/{{ article.photoURL }}" class="lazyOwl" />
</div>
The functionality is effective and generates the subsequent markup for each carousel item:
<img id="image0" data-ng-src="http://uploads.mysite.co/rs/e1f7daf77d42537212d31d8dbd113ec8.jpg" class="lazyOwl" src="http://uploads.mysite.co/rs/e1f7daf77d42537212d31d8dbd113ec8.jpg">
Is there a method to change the output to display 'data-src=...
' instead of just 'src=...
'?