Sha256: 07a5ad2b6fb144664b3f8c913c816ff36b3b178cf69c9805efe4fbde0d3ede03
Contents?: true
Size: 619 Bytes
Versions: 13
Compression:
Stored size: 619 Bytes
Contents
jQuery -> $('#menu').waypoint( (event, direction) -> $(this).toggleClass('sticky', direction == "down") $(this).css( left: $("#header").offset().left ) event.stopPropagation() ) $('#menu').find("li").each( () -> if $(this).find("ul").length > 0 # $("<span>").text("^").appendTo($(this).children(":first")) # show subnav on hover $(this).mouseenter( () -> $(this).find("ul").stop(true, true).show() #slideDown() ) # hide submenus on exit $(this).mouseleave( () -> $(this).find("ul").stop(true, true).hide() #slideUp() ) )
Version data entries
13 entries across 13 versions & 1 rubygems