Advertisement
Guest User

Untitled

a guest
Jun 15th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. timer = 0
  2. exports.hide = @hide = () -> print "hide"
  3.        
  4. # mouseOut timer
  5. @loadTimer = () ->
  6.     timer = setTimeout( -> exports.hide() ) 2000
  7.        
  8. @resetTimer = () ->
  9.     clearTimeout timer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement