Skip to content

Instantly share code, notes, and snippets.

@meramos
Created December 21, 2020 03:53
Show Gist options
  • Select an option

  • Save meramos/7d0eb4ff5d8dffb7aacb0995761e2e37 to your computer and use it in GitHub Desktop.

Select an option

Save meramos/7d0eb4ff5d8dffb7aacb0995761e2e37 to your computer and use it in GitHub Desktop.
Change you have to make to the next() function if you want it to use it for a "previous" button
let next_num = dressupState[item].current - 1
// if next_num less than 0, restart (set current to total - 1)
let new_current = next_num < 0 ? dressupState[item].total - 1 : next_num
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment