Skip to content

Instantly share code, notes, and snippets.

@technobulka
Created September 16, 2013 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technobulka/6579441 to your computer and use it in GitHub Desktop.
Save technobulka/6579441 to your computer and use it in GitHub Desktop.
Next/prev list item by circle
var c = 9, // current, start from length-1
l = 10, // length
i; // index, 0 - prev, 1 - next
c = i?++c%l:~--c%l?c%l:l-1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment