Guest User

Untitled

a guest
Sep 4th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #I was able to change this
  2. $('.addSet').on('click', (event)->
  3.     event.stopPropagation()
  4.     menuShow(event.target)
  5. )
  6.  
  7. #To this
  8. $(document).on('click', '.addSet', (event)->
  9.     event.stopPropagation()
  10.     menuShow(event.target)
  11. )
Add Comment
Please, Sign In to add comment