Skip to content

Instantly share code, notes, and snippets.

@imakewebthings
Last active August 29, 2015 14:02
Show Gist options
  • Save imakewebthings/3fa20ee9ae4383b6fb09 to your computer and use it in GitHub Desktop.
Save imakewebthings/3fa20ee9ae4383b6fb09 to your computer and use it in GitHub Desktop.
$(document).on('deck.beforeChange', function(event, from, to) {
var $slides = $.deck('getSlides');
var onLastSlide = from === $slides.length - 1;
var onFirstSlide = !from;
var goingForward = to > from;
if (onLastSlide && goingForward) {
event.preventDefault();
$.deck('go', 0);
}
else if (onFirstSlide && !goingForward) {
event.preventDefault();
$.deck('go', $slides.length - 1)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment