Sha256: aa980ade39ffc510c421dca71306fd156720c977701ecd3c02afd76cbe75b962

Contents?: true

Size: 1.2 KB

Versions: 13

Compression:

Stored size: 1.2 KB

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();
});

// Dumb down quotes within code blocks that delimit strings instead of quotations
// https://github.com/realm/jazzy/issues/714
$("code q").replaceWith(function () {
  return ["\"", $(this).contents(), "\""];
});

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
jazzy-0.9.5 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.9.4 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.9.3 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.9.2 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.9.1 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.9.0 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.8.4 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.8.3 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.8.2 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.8.1 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.8.0 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.5 lib/jazzy/themes/fullwidth/assets/js/jazzy.js
jazzy-0.7.4 lib/jazzy/themes/fullwidth/assets/js/jazzy.js