Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. const init = [
  2. myHolder = $el, // 0
  3. myCards = myHolder.find('a'), // 1
  4. myCount = 1, // 2
  5. myLength = myCards.length, // 3
  6. firstClone = myCards.first().before(myCards.last().clone().addClass('cloned')), // 4 this makes the clone.
  7. lastClone = myCards.last().after(myCards.first().clone().addClass('cloned')), // 5
  8. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement