Skip to content

Instantly share code, notes, and snippets.

@artcommacode
Created June 17, 2014 15:23
Show Gist options
  • Save artcommacode/857f11d129cc4148a976 to your computer and use it in GitHub Desktop.
Save artcommacode/857f11d129cc4148a976 to your computer and use it in GitHub Desktop.
// is there a "neater" or "better" way of doing this?
function getNextSlide(right) {
return right ?
slideshow.$current.next().length ?
slideshow.$current.next() :
$(slideshow.slides).first() :
slideshow.$current.prev().length ?
slideshow.$current.prev() :
$(slideshow.slides).last();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment