Sha256: 7ae9a08f10ba8e8001847d737a14964b9930e3ac1f987722b6247cc0d8d98492
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
var sectionHeight = function() { var total = $(window).height(), $section = $('section').css('height','auto'); if ($section.outerHeight(true) < total) { var margin = $section.outerHeight(true) - $section.height(); $section.height(total - margin - 20); } else { $section.css('height','auto'); } } $(window).resize(sectionHeight); $(function() { $("section h1, section h2, section h3").each(function(){ $("nav ul").append("<li class='tag-" + this.nodeName.toLowerCase() + "'><a href='#" + $(this).text().toLowerCase().replace(/ /g, '-').replace(/[^\w-]+/g,'') + "'>" + $(this).text() + "</a></li>"); $(this).attr("id",$(this).text().toLowerCase().replace(/ /g, '-').replace(/[^\w-]+/g,'')); $("nav ul li:first-child a").parent().addClass("active"); }); $("nav ul li").on("click", "a", function(event) { var position = $($(this).attr("href")).offset().top - 190; $("html, body").animate({scrollTop: position}, 400); $("nav ul li a").parent().removeClass("active"); $(this).parent().addClass("active"); event.preventDefault(); }); sectionHeight(); $('img').on('load', sectionHeight); });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-leap-day-0.2.0 | assets/js/main.js |
jekyll-theme-leap-day-0.1.1 | assets/js/main.js |