When enabled, orbit will only cycle through the slides once...like a
presentation
afterSlideChange: $.noop, // empty function
afterLoadComplete: $.noop, //callback to execute after everything has been loaded
fluid: true,
- centerBullets: true // center bullet nav with js, turn this off if you want to position the bullet nav manually
+ centerBullets: true, // center bullet nav with js, turn this off if you want to position the bullet nav manually
+ singleCycle: false // cycles through orbit slides only once
},
activeSlide: 0,
this.setCaption();
}
+
+ if (this.$slides.last() && this.options.singleCycle) {
+ this.stopClock();
+ }
}
};