Skip to content

Instantly share code, notes, and snippets.

@jonvuri
Created August 5, 2012 23:22
Show Gist options
  • Save jonvuri/3267899 to your computer and use it in GitHub Desktop.
Save jonvuri/3267899 to your computer and use it in GitHub Desktop.
function shouldDecrement(current, target, length) {
var directDist, decrementDist;
directDist = target - current;
decrementDist = length - target + current;
if (Math.abs(directDist) < decrementDist)
if (directDist > 0)
return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment