Sha256: 9d90d45571886190d1b38b0e9fbc8e76f467d43e7cfbfc01bb72bfaae82e43bb

Contents?: true

Size: 249 Bytes

Versions: 1

Compression:

Stored size: 249 Bytes

Contents

// Animated scroll to anchors and offset
var $root = $("html, body");
$('#content-container a[href^="#"]').click(function() {
  $root.animate(
    {
      scrollTop: $($.attr(this, "href")).offset().top - 200
    },
    500
  );
  return false;
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.7.0 assets/js/app/scroll-to-anchors.js