Skip to content

Instantly share code, notes, and snippets.

@wluisi
Created November 4, 2016 18:01
Show Gist options
  • Save wluisi/be7b2abc82002baa5694cf2c741e32f2 to your computer and use it in GitHub Desktop.
Save wluisi/be7b2abc82002baa5694cf2c741e32f2 to your computer and use it in GitHub Desktop.
Flexslider/Flexloader Drupal Example
(function($) {
Drupal.behaviors.cc_slider__flexslider = {
attach: function (context, settings) {
$(window).load(function() {
$('.flexslider').flexslider({
animation: "slide",
controlNav: true,
slideshow: false,
// Wire up flexloader
start: function(slider) {
$.flexloader(slider);
},
after: function(slider) {
$.flexloader(slider);
}
});
});
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment