Skip to content

Instantly share code, notes, and snippets.

@dealingwith
Last active August 29, 2015 14:03
Show Gist options
  • Save dealingwith/fe1512be1a20658621fb to your computer and use it in GitHub Desktop.
Save dealingwith/fe1512be1a20658621fb to your computer and use it in GitHub Desktop.
$('.referral').mouseover ->
window.easter_egg_timeout = setTimeout =>
$(this).next('.easter-egg-message').slideDown()
, 3500
$('.referral').mouseout ->
clearTimeout(easter_egg_timeout)
$(this).next('.easter-egg-message').slideUp()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment