2014-02-13 20:20:28 +01:00
|
|
|
/*! Responsive Menu */
|
|
|
|
// http://tympanus.net/codrops/2013/05/08/responsive-retina-ready-menu/
|
|
|
|
// The function to change the class
|
|
|
|
var changeClass = function (r,className1,className2) {
|
|
|
|
var regex = new RegExp("(?:^|\\s+)" + className1 + "(?:\\s+|$)");
|
|
|
|
if( regex.test(r.className) ) {
|
|
|
|
r.className = r.className.replace(regex,' '+className2+' ');
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
r.className = r.className.replace(new RegExp("(?:^|\\s+)" + className2 + "(?:\\s+|$)"),' '+className1+' ');
|
|
|
|
}
|
|
|
|
return r.className;
|
|
|
|
};
|
|
|
|
// Creating our button in JS for smaller screens
|
|
|
|
var menuElements = document.getElementById('site-nav');
|
2014-04-15 21:42:38 +02:00
|
|
|
menuElements.insertAdjacentHTML('afterBegin','<button type="button" role="button" id="menutoggle" class="navtoogle navicon-lines-button x" aria-hidden="true"><span class="navicon-lines"></span>menu</button>');
|
2014-02-13 20:20:28 +01:00
|
|
|
|
|
|
|
// Toggle the class on click to show / hide the menu
|
|
|
|
document.getElementById('menutoggle').onclick = function() {
|
|
|
|
changeClass(this, 'navtoogle active', 'navtoogle');
|
|
|
|
};
|
|
|
|
// http://tympanus.net/codrops/2013/05/08/responsive-retina-ready-menu/comment-page-2/#comment-438918
|
|
|
|
document.onclick = function(e) {
|
|
|
|
var mobileButton = document.getElementById('menutoggle'),
|
|
|
|
buttonStyle = mobileButton.currentStyle ? mobileButton.currentStyle.display : getComputedStyle(mobileButton, null).display;
|
|
|
|
|
|
|
|
if(buttonStyle === 'block' && e.target !== mobileButton && new RegExp(' ' + 'active' + ' ').test(' ' + mobileButton.className + ' ')) {
|
|
|
|
changeClass(mobileButton, 'navtoogle active', 'navtoogle');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-09-09 16:12:07 +02:00
|
|
|
/*! Plugin options and other jQuery stuff */
|
|
|
|
|
|
|
|
// FitVids options
|
|
|
|
$(function() {
|
|
|
|
$("article").fitVids();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Table of Contents toggle
|
|
|
|
$(function() {
|
|
|
|
$(".toc h3").click(function () {
|
|
|
|
$("#drawer").toggleClass("hidden");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Add lightbox class to all image links
|
2014-03-14 13:37:12 +01:00
|
|
|
$("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.JPG'],a[href$='.png'],a[href$='.gif']").addClass("image-popup");
|
2013-09-09 16:12:07 +02:00
|
|
|
|
|
|
|
// Magnific-Popup options
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.image-popup').magnificPopup({
|
|
|
|
type: 'image',
|
|
|
|
tLoading: 'Loading image #%curr%...',
|
|
|
|
gallery: {
|
|
|
|
enabled: true,
|
|
|
|
navigateByImgClick: true,
|
|
|
|
preload: [0,1] // Will preload 0 - before current, and 1 after the current image
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
tError: '<a href="%url%">Image #%curr%</a> could not be loaded.',
|
|
|
|
},
|
|
|
|
removalDelay: 300, // 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
|
|
|
|
mainClass: 'mfp-fade'
|
|
|
|
});
|
|
|
|
});
|