Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flexslider not working properly when using ng-repeat

I am having issues with flex slider as it stops working if I use ng-repeat. Otherwise its working fine.

myApp.controller('frontCtrl', function ($scope) {
  var results = {"id":4,"title":"sddddddd", "photos":[{"url":"http://placekitten.com/g/400/200","id":1},{"url":"http://placekitten.com/g/400/200","id":2}]};
  $scope.images=results.photos

});

myApp.directive('flexslider', function () {

  return {
    link: function (scope, element, attrs) {

      element.flexslider({
        animation: "slide"
      });
    }
  }
});

HTML

    <div class="flexslider" flexslider>
      <ul class="slides">

        /* This wont work*/
        <li ng-repeat="img in images">
          <img src="{{img.url}}">
        </li>


          /* This work*/
        <li>
          <img src="http://placekitten.com/g/400/200">
        </li>
        <li>
          <img src="http://placekitten.com/g/400/200">
        </li>
        <li>
          <img src="http://placekitten.com/g/400/200">
        </li>
      </ul>
    </div>

I have recreated this issue in a plunker http://plnkr.co/edit/P2AOwQY0fQSMSXUQbc9t?p=preview

like image 547
Abhilash Avatar asked Apr 20 '16 13:04

Abhilash


1 Answers

For some reason the directive didn't work for me, so after a long trial and error period, I came up with the following:

function startSlideShow() {   
    jQuery('.slideshow').flexslider({
        animation: "slide",
        animationLoop: false,
        itemWidth: 240,
        controlNav: false
    });
    jQuery('#menu-section a.dropdown-toggle').click(function () {
        jQuery('#menu-section .dropdown-menu').toggle();
    })
}

and simply call this after you've loaded everything (my images come from a url that's loaded at runtime):

setTimeout( startSlideShow, 10)
like image 114
Nico Avatar answered Oct 19 '22 16:10

Nico