Guest User

Untitled

a guest
Oct 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. curAction = "news"
  2. fading = false
  3. $ ->
  4. $('.vendor-action').click (e) ->
  5. action = $(@).data('action')
  6. if action isnt curAction and fading isnt true
  7. fading = true
  8. $(@).removeClass('btn-primary')
  9. $("#btn-"+curAction).addClass('btn-primary')
  10. $('#'+curAction).fadeOut(500, -> $('#'+action+'').fadeIn(500, -> fading = false))
  11. curAction = action
  12. e.preventDefault()
Add Comment
Please, Sign In to add comment