showcase.js 299 B

123456789101112
  1. let media = $("#carousel-links > a");
  2. let options = {
  3. container: "#gallery-carousel",
  4. carousel: true,
  5. slideshowInterval: 5000
  6. };
  7. // we might not have a screenshot or video, and mounting without any links causes a JS error.
  8. if (media.length > 0) {
  9. blueimp.Gallery(media, options);
  10. }