Skip to content

Instantly share code, notes, and snippets.

@dvdsgl
Last active December 17, 2015 16:39
Show Gist options
  • Save dvdsgl/5640565 to your computer and use it in GitHub Desktop.
Save dvdsgl/5640565 to your computer and use it in GitHub Desktop.
scrollPoints = [
{ selector: "#window", fire: showAccountTile }
]
processScrollPoints = ->
scrollPoints = _.reject scrollPoints, ({selector, fire}) ->
if isScrolledIntoView $(selector)
fire()
true
else
false
$ ->
$(window).on "scroll", processScrollPoints
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment