},
initSlideshow: function (s, context) {
var s = this.normalizeSlideshowElement(s);
+
if (context === 'popup') {
this.initPopupSlideshow(s);
} else if (context === 'inline') {
arrows: true,
};
- this.primarySlider = new Splide(this.slideshowID, slideshowSettings);
-
+ this.primarySlider = new Splide('#' + this.slideshowID, slideshowSettings);
if (this.showThumbnails) {
- this.thumbSlider = new Splide(this.thumbnailsID, {
+ this.thumbSlider = new Splide('#' + this.thumbnailsID, {
autoWidth: true, // Height is handled by the CSS
start: openIndex,
gap: 10,
return {w: w, h: h, fullscreen: fullscreen};
},
- resizeInline:function(){
+ resizeInline: function () {
},
};