2016-03-10 03:23:27 +01:00
|
|
|
/* ==========================================================================
|
|
|
|
jQuery plugin settings and other scripts
|
|
|
|
========================================================================== */
|
2014-02-13 20:20:28 +01:00
|
|
|
|
2017-12-07 14:56:14 +01:00
|
|
|
$(document).ready(function() {
|
2016-03-10 19:06:17 +01:00
|
|
|
// FitVids init
|
|
|
|
$("#main").fitVids();
|
2013-09-09 16:12:07 +02:00
|
|
|
|
2018-01-03 20:20:41 +01:00
|
|
|
// Sticky sidebar
|
|
|
|
var stickySideBar = function() {
|
|
|
|
var show =
|
|
|
|
$(".author__urls-wrapper button").length === 0
|
|
|
|
? $(window).width() > 1024 // width should match $large Sass variable
|
|
|
|
: !$(".author__urls-wrapper button").is(":visible");
|
|
|
|
if (show) {
|
|
|
|
// fix
|
|
|
|
$(".sidebar").addClass("sticky");
|
|
|
|
} else {
|
|
|
|
// unfix
|
|
|
|
$(".sidebar").removeClass("sticky");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
stickySideBar();
|
|
|
|
|
|
|
|
$(window).resize(function() {
|
|
|
|
stickySideBar();
|
|
|
|
});
|
|
|
|
|
2016-03-21 05:03:46 +01:00
|
|
|
// Follow menu drop down
|
2016-03-21 21:01:19 +01:00
|
|
|
$(".author__urls-wrapper button").on("click", function() {
|
2017-08-04 17:55:10 +02:00
|
|
|
$(".author__urls").toggleClass("is--visible");
|
2016-03-21 21:01:19 +01:00
|
|
|
$(".author__urls-wrapper button").toggleClass("open");
|
|
|
|
});
|
2016-03-17 20:38:07 +01:00
|
|
|
|
2019-02-11 22:00:14 +01:00
|
|
|
// Close search screen with Esc key
|
|
|
|
$(document).keyup(function(e) {
|
|
|
|
if (e.keyCode === 27) {
|
|
|
|
if ($(".initial-content").hasClass("is--hidden")) {
|
|
|
|
$(".search-content").toggleClass("is--visible");
|
|
|
|
$(".initial-content").toggleClass("is--hidden");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-12-07 14:56:14 +01:00
|
|
|
// Search toggle
|
|
|
|
$(".search__toggle").on("click", function() {
|
|
|
|
$(".search-content").toggleClass("is--visible");
|
|
|
|
$(".initial-content").toggleClass("is--hidden");
|
|
|
|
// set focus on input
|
|
|
|
setTimeout(function() {
|
2018-02-16 21:12:57 +01:00
|
|
|
$(".search-content input").focus();
|
2017-12-07 14:56:14 +01:00
|
|
|
}, 400);
|
|
|
|
});
|
|
|
|
|
2019-01-04 18:31:38 +01:00
|
|
|
// Smooth scrolling
|
2019-03-22 21:01:28 +01:00
|
|
|
var scroll = new SmoothScroll('a[href*="#"]', {
|
|
|
|
offset: 20,
|
|
|
|
speed: 400,
|
|
|
|
speedAsDuration: true,
|
|
|
|
durationMax: 500
|
2019-01-04 18:31:38 +01:00
|
|
|
});
|
2019-03-22 21:01:28 +01:00
|
|
|
|
|
|
|
// Gumshoe scroll spy init
|
2019-04-12 17:42:10 +02:00
|
|
|
if($("nav.toc").length > 0) {
|
|
|
|
var spy = new Gumshoe("nav.toc a", {
|
|
|
|
// Active classes
|
|
|
|
navClass: "active", // applied to the nav list item
|
|
|
|
contentClass: "active", // applied to the content
|
|
|
|
|
|
|
|
// Nested navigation
|
|
|
|
nested: false, // if true, add classes to parents of active link
|
|
|
|
nestedClass: "active", // applied to the parent items
|
|
|
|
|
|
|
|
// Offset & reflow
|
|
|
|
offset: 20, // how far from the top of the page to activate a content area
|
|
|
|
reflow: true, // if true, listen for reflows
|
|
|
|
|
|
|
|
// Event support
|
|
|
|
events: true // if true, emit custom events
|
|
|
|
});
|
|
|
|
}
|
2019-10-04 16:59:44 +02:00
|
|
|
|
2016-03-10 19:06:17 +01:00
|
|
|
// add lightbox class to all image links
|
2017-12-07 14:56:14 +01:00
|
|
|
$(
|
2021-02-06 02:14:21 +01:00
|
|
|
"a[href$='.jpg'],a[href$='.jpeg'],a[href$='.JPG'],a[href$='.png'],a[href$='.gif'],a[href$='.webp']"
|
2017-12-07 14:56:14 +01:00
|
|
|
).addClass("image-popup");
|
2016-03-10 03:23:27 +01:00
|
|
|
|
2016-03-10 19:06:17 +01:00
|
|
|
// Magnific-Popup options
|
2016-03-10 03:23:27 +01:00
|
|
|
$(".image-popup").magnificPopup({
|
2016-07-07 15:50:09 +02:00
|
|
|
// disableOn: function() {
|
|
|
|
// if( $(window).width() < 500 ) {
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
// return true;
|
|
|
|
// },
|
2017-12-07 14:56:14 +01:00
|
|
|
type: "image",
|
|
|
|
tLoading: "Loading image #%curr%...",
|
2013-09-09 16:12:07 +02:00
|
|
|
gallery: {
|
|
|
|
enabled: true,
|
|
|
|
navigateByImgClick: true,
|
2017-12-07 14:56:14 +01:00
|
|
|
preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
|
2013-09-09 16:12:07 +02:00
|
|
|
},
|
|
|
|
image: {
|
2017-12-07 14:56:14 +01:00
|
|
|
tError: '<a href="%url%">Image #%curr%</a> could not be loaded.'
|
2013-09-09 16:12:07 +02:00
|
|
|
},
|
2016-03-10 19:06:17 +01:00
|
|
|
removalDelay: 500, // Delay in milliseconds before popup is removed
|
|
|
|
// Class that is added to body when popup is open.
|
|
|
|
// make it unique to apply your CSS animations just to this exact popup
|
2017-12-07 14:56:14 +01:00
|
|
|
mainClass: "mfp-zoom-in",
|
2016-03-10 19:06:17 +01:00
|
|
|
callbacks: {
|
|
|
|
beforeOpen: function() {
|
|
|
|
// just a hack that adds mfp-anim class to markup
|
2017-12-07 14:56:14 +01:00
|
|
|
this.st.image.markup = this.st.image.markup.replace(
|
|
|
|
"mfp-figure",
|
|
|
|
"mfp-figure mfp-with-anim"
|
|
|
|
);
|
2016-03-10 19:06:17 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
closeOnContentClick: true,
|
|
|
|
midClick: true // allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source.
|
2013-09-09 16:12:07 +02:00
|
|
|
});
|
2019-10-04 16:59:44 +02:00
|
|
|
|
|
|
|
// Add anchors for headings
|
|
|
|
$('.page__content').find('h1, h2, h3, h4, h5, h6').each(function() {
|
|
|
|
var id = $(this).attr('id');
|
|
|
|
if (id) {
|
|
|
|
var anchor = document.createElement("a");
|
|
|
|
anchor.className = 'header-link';
|
|
|
|
anchor.href = '#' + id;
|
2020-08-14 21:21:38 +02:00
|
|
|
anchor.innerHTML = '<span class=\"sr-only\">Permalink</span><i class=\"fas fa-link\"></i>';
|
2019-10-04 16:59:44 +02:00
|
|
|
anchor.title = "Permalink";
|
|
|
|
$(this).append(anchor);
|
|
|
|
}
|
|
|
|
});
|
2016-06-23 00:59:16 +02:00
|
|
|
});
|