Skip to content

Instantly share code, notes, and snippets.

@erikflowers
Created January 3, 2014 02:10
Show Gist options
  • Save erikflowers/8231344 to your computer and use it in GitHub Desktop.
Save erikflowers/8231344 to your computer and use it in GitHub Desktop.
$(document).ready stickyAside = ->
top = $(".sticky").offset().top
$(window).scroll ->
if $(this).scrollTop() > top - 40
$(".sticky").addClass "stick image"
else
$(".sticky").removeClass "stick image"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment