Sha256: 2aa0d24d5a5425f5cd84e9f42f36c0eba35ca9363487589ae88f1feb37be6ab6

Contents?: true

Size: 1015 Bytes

Versions: 10

Compression:

Stored size: 1015 Bytes

Contents

window.jazzy = {'docset': false}
if (typeof window.dash != 'undefined') {
  document.documentElement.className += ' dash'
  window.jazzy.docset = true
}
if (navigator.userAgent.match(/xcode/i)) {
  document.documentElement.className += ' xcode'
  window.jazzy.docset = true
}

// On doc load, toggle the URL hash discussion if present
$(document).ready(function() {
  if (!window.jazzy.docset) {
    var linkToHash = $('a[href="' + window.location.hash +'"]');
    linkToHash.trigger("click");
  }
});

// On token click, toggle its discussion and animate token.marginLeft
$(".token").click(function(event) {
  if (window.jazzy.docset) {
    return;
  }
  var link = $(this);
  var animationDuration = 300;
  $content = link.parent().parent().next();
  $content.slideToggle(animationDuration);

  // Keeps the document from jumping to the hash.
  var href = $(this).attr('href');
  if (history.pushState) {
    history.pushState({}, '', href);
  } else {
    location.hash = href;
  }
  event.preventDefault();
});

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jazzy-0.9.6 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.3 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.2 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.1 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.0 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.6.3 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.6.2 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.6.1 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.6.0 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.5.0 lib/jazzy/themes/fullwidth/assets/js/jazzy.js