149 lines
4.2 KiB
JavaScript
149 lines
4.2 KiB
JavaScript
/**
|
|
* File skip-link-focus-fix.js.
|
|
*
|
|
* Helps with accessibility for keyboard only users.
|
|
*
|
|
* Learn more: https://git.io/vWdr2
|
|
*/
|
|
( function() {
|
|
var isIe = /(trident|msie)/i.test( navigator.userAgent );
|
|
|
|
if ( isIe && document.getElementById && window.addEventListener ) {
|
|
window.addEventListener( 'hashchange', function() {
|
|
var id = location.hash.substring( 1 ),
|
|
element;
|
|
|
|
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
|
|
return;
|
|
}
|
|
|
|
element = document.getElementById( id );
|
|
|
|
if ( element ) {
|
|
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
|
|
element.tabIndex = -1;
|
|
}
|
|
|
|
element.focus();
|
|
}
|
|
}, false );
|
|
}
|
|
} )();
|
|
|
|
/*! outline.js v1.2.0 - https://github.com/lindsayevans/outline.js/ */
|
|
(function(d){
|
|
|
|
var style_element = d.createElement('STYLE'),
|
|
dom_events = 'addEventListener' in d,
|
|
add_event_listener = function(type, callback){
|
|
// Basic cross-browser event handling
|
|
if(dom_events){
|
|
d.addEventListener(type, callback);
|
|
}else{
|
|
d.attachEvent('on' + type, callback);
|
|
}
|
|
},
|
|
set_css = function(css_text){
|
|
// Handle setting of <style> element contents in IE8
|
|
!!style_element.styleSheet ? style_element.styleSheet.cssText = css_text : style_element.innerHTML = css_text;
|
|
}
|
|
;
|
|
|
|
d.getElementsByTagName('HEAD')[0].appendChild(style_element);
|
|
|
|
// Using mousedown instead of mouseover, so that previously focused elements don't lose focus ring on mouse move
|
|
add_event_listener('mousedown', function(){
|
|
set_css(':focus{outline:0}::-moz-focus-inner{border:0;}');
|
|
});
|
|
|
|
add_event_listener('keydown', function(){
|
|
set_css('');
|
|
});
|
|
|
|
})(document);
|
|
|
|
( function() {
|
|
'use strict';
|
|
|
|
if ( 'querySelector' in document && 'addEventListener' in window && document.body.classList.contains( 'dropdown-hover' ) ) {
|
|
var navLinks = document.querySelectorAll( 'nav ul a' ),
|
|
parentElements = document.querySelectorAll( '.sf-menu .menu-item-has-children' );
|
|
|
|
/**
|
|
* Make menu items tab accessible when using the hover dropdown type
|
|
*/
|
|
var toggleFocus = function() {
|
|
if ( this.closest( 'nav' ).classList.contains( 'toggled' ) || this.closest( 'nav' ).classList.contains( 'slideout-navigation' ) ) {
|
|
return;
|
|
}
|
|
|
|
var self = this;
|
|
|
|
while ( -1 === self.className.indexOf( 'main-nav' ) ) {
|
|
|
|
if ( 'li' === self.tagName.toLowerCase() ) {
|
|
if ( -1 !== self.className.indexOf( 'sfHover' ) ) {
|
|
self.className = self.className.replace( ' sfHover', '' );
|
|
} else {
|
|
self.className += ' sfHover';
|
|
}
|
|
}
|
|
|
|
self = self.parentElement;
|
|
}
|
|
}
|
|
|
|
for ( var i = 0; i < navLinks.length; i++ ) {
|
|
navLinks[i].addEventListener( 'focus', toggleFocus );
|
|
navLinks[i].addEventListener( 'blur', toggleFocus );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Make hover dropdown touch-friendly.
|
|
*/
|
|
if ( 'touchend' in document.documentElement ) {
|
|
for ( var i = 0; i < parentElements.length; i++ ) {
|
|
parentElements[i].addEventListener( 'touchend', function( e ) {
|
|
// Bail on mobile
|
|
if ( parentElements[i].closest( 'nav' ).classList.contains( 'toggled' ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( e.touches.length === 1 ) {
|
|
// Prevent touch events within dropdown bubbling down to document
|
|
e.stopPropagation();
|
|
|
|
// Toggle hover
|
|
if ( ! this.classList.contains( 'sfHover' ) ) {
|
|
// Prevent link on first touch
|
|
if ( e.target === this || e.target.parentNode === this ) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
// Close other sub-menus
|
|
var openedSubMenus = parentElements[i].closest( 'nav' ).querySelectorAll( 'ul.toggled-on' );
|
|
if ( openedSubMenus && ! this.closest( 'ul' ).classList.contains( 'toggled-on' ) && ! this.closest( 'li' ).classList.contains( 'sfHover' ) ) {
|
|
for ( var o = 0; o < openedSubMenus.length; o++ ) {
|
|
openedSubMenus[o].classList.remove( 'toggled-on' );
|
|
openedSubMenus[o].closest( 'li' ).classList.remove( 'sfHover' );
|
|
}
|
|
}
|
|
|
|
this.classList.add( 'sfHover' );
|
|
|
|
// Hide dropdown on touch outside
|
|
document.addEventListener( 'touchend', closeDropdown = function(e) {
|
|
e.stopPropagation();
|
|
|
|
this.classList.remove( 'sfHover' );
|
|
document.removeEventListener( 'touchend', closeDropdown );
|
|
} );
|
|
}
|
|
}
|
|
}, true );
|
|
}
|
|
}
|
|
|
|
})();
|