/* global adonisScreenReaderText */
/*
* Custom scripts
* Description: Custom scripts for adonis
*/
( function( $ ) {
/**
* Functionality for scroll to top button
*/
$( function() {
$(window).on( 'scroll', function () {
if ( $( this ).scrollTop() > 100 ) {
$( '#scrollup' ).fadeIn('slow');
$( '#scrollup' ).show();
} else {
$('#scrollup').fadeOut('slow');
$("#scrollup").hide();
}
});
$( '#scrollup' ).on( 'click', function () {
$( 'body, html' ).animate({
scrollTop: 0
}, 500 );
return false;
});
});
// Add header video class after the video is loaded.
$( document ).on( 'wp-custom-header-video-loaded', function() {
$( 'body' ).addClass( 'has-header-video' );
});
//Scroll Down.
$(".button-scroll").on("click", function(e){
e.preventDefault();
var findHeader = $('body').find('.custom-header').next();
var scrollTo = findHeader.offset().top;
$('html, body').animate({
scrollTop: scrollTo
}, 1000);
});
/*
* Test if inline SVGs are supported.
* @link https://github.com/Modernizr/Modernizr/
*/
function supportsInlineSVG() {
var div = document.createElement( 'div' );
div.innerHTML = '';
return 'http://www.w3.org/2000/svg' === ( 'undefined' !== typeof SVGRect && div.firstChild && div.firstChild.namespaceURI );
}
$( function() {
$( document ).ready( function() {
if ( true === supportsInlineSVG() ) {
document.documentElement.className = document.documentElement.className.replace( /(\s*)no-svg(\s*)/, '$1svg$2' );
}
});
});
/* Menu */
var body, masthead, menuToggle, siteNavigation, socialNavigation, siteHeaderMenu, resizeTimer;
function initMainNavigation( container ) {
// Add dropdown toggle that displays child menu items.
var dropdownToggle = $( '', { 'class': 'dropdown-toggle', 'aria-expanded': false })
.append( adonisScreenReaderText.icon )
.append( $( '', { 'class': 'screen-reader-text', text: adonisScreenReaderText.expand }) );
container.find( '.menu-item-has-children > a' ).after( dropdownToggle );
// Toggle buttons and submenu items with active children menu items.
container.find( '.current-menu-ancestor > button' ).addClass( 'toggled-on' );
container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
// Add menu items with submenus to aria-haspopup="true".
container.find( '.menu-item-has-children' ).attr( 'aria-haspopup', 'true' );
container.find( '.dropdown-toggle' ).on( 'click', function( e ) {
var _this = $( this ),
screenReaderSpan = _this.find( '.screen-reader-text' );
e.preventDefault();
_this.toggleClass( 'toggled-on' );
_this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
// jscs:disable
_this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
// jscs:enable
screenReaderSpan.text( screenReaderSpan.text() === adonisScreenReaderText.expand ? adonisScreenReaderText.collapse : adonisScreenReaderText.expand );
} );
}
initMainNavigation( $( '.main-navigation' ) );
masthead = $( '#masthead' );
menuToggle = masthead.find( '.menu-toggle' );
siteHeaderMenu = masthead.find( '#site-header-menu' );
siteNavigation = masthead.find( '#site-navigation' );
socialNavigation = masthead.find( '#social-navigation' );
// Enable menuToggle.
( function() {
// Adds our overlay div.
$( '.below-site-header' ).prepend( '
' );
// Assume the initial scroll position is 0.
var scroll = 0;
// Return early if menuToggle is missing.
if ( ! menuToggle.length ) {
return;
}
// Add an initial values for the attribute.
menuToggle.add( siteNavigation ).attr( 'aria-expanded', 'false' );
menuToggle.add( socialNavigation ).attr( 'aria-expanded', 'false' );
// Wait for a click on one of our menu toggles.
menuToggle.on( 'click.adonis', function() {
// Assign this (the button that was clicked) to a variable.
var button = this;
// Gets the actual menu (parent of the button that was clicked).
var menu = $( this ).parents( '.menu-wrapper' );
// Remove selected classes from other menus.
$( '.menu-toggle' ).not( button ).removeClass( 'selected' );
$( '.menu-wrapper' ).not( menu ).removeClass( 'is-open' );
// Toggle the selected classes for this menu.
$( button ).toggleClass( 'selected' );
$( menu ).toggleClass( 'is-open' );
// Is the menu in an open state?
var is_open = $( menu ).hasClass( 'is-open' );
// If the menu is open and there wasn't a menu already open when clicking.
if ( is_open && ! jQuery( 'body' ).hasClass( 'menu-open' ) ) {
// Get the scroll position if we don't have one.
if ( 0 === scroll ) {
scroll = $( 'body' ).scrollTop();
}
// Add a custom body class.
$( 'body' ).addClass( 'menu-open' );
// If we're closing the menu.
} else if ( ! is_open ) {
$( 'body' ).removeClass( 'menu-open' );
$( 'body' ).scrollTop( scroll );
scroll = 0;
}
} );
// Close menus when somewhere else in the document is clicked.
$( document ).on( 'click', function() {
$( 'body' ).removeClass( 'menu-open' );
$( '.menu-toggle' ).removeClass( 'selected' );
$( '.menu-wrapper' ).removeClass( 'is-open' );
} );
// Stop propagation if clicking inside of our main menu.
$( '.menu-toggle, .dropdown-toggle, .search-field' ).on( 'click', function( e ) {
e.stopPropagation();
} );
} )();
// Fix sub-menus for touch devices and better focus for hidden submenu items for accessibility.
( function() {
if ( ! siteNavigation.length || ! siteNavigation.children().length ) {
return;
}
// Toggle `focus` class to allow submenu access on tablets.
function toggleFocusClassTouchScreen() {
if ( window.innerWidth >= 910 ) {
$( document.body ).on( 'touchstart.adonis', function( e ) {
if ( ! $( e.target ).closest( '.main-navigation li' ).length ) {
$( '.main-navigation li' ).removeClass( 'focus' );
}
} );
siteNavigation.find( '.menu-item-has-children > a' ).on( 'touchstart.adonis', function( e ) {
var el = $( this ).parent( 'li' );
if ( ! el.hasClass( 'focus' ) ) {
e.preventDefault();
el.toggleClass( 'focus' );
el.siblings( '.focus' ).removeClass( 'focus' );
}
} );
} else {
siteNavigation.find( '.menu-item-has-children > a' ).unbind( 'touchstart.adonis' );
}
}
if ( 'ontouchstart' in window ) {
$( window ).on( 'resize.adonis', toggleFocusClassTouchScreen );
toggleFocusClassTouchScreen();
}
siteNavigation.find( 'a' ).on( 'focus.adonis blur.adonis', function() {
$( this ).parents( '.menu-item' ).toggleClass( 'focus' );
} );
} )();
// Add the default ARIA attributes for the menu toggle and the navigations.
function onResizeARIA() {
if ( window.innerWidth < 910 ) {
if ( menuToggle.hasClass( 'toggled-on' ) ) {
menuToggle.attr( 'aria-expanded', 'true' );
} else {
menuToggle.attr( 'aria-expanded', 'false' );
}
if ( siteHeaderMenu.hasClass( 'toggled-on' ) ) {
siteNavigation.attr( 'aria-expanded', 'true' );
socialNavigation.attr( 'aria-expanded', 'true' );
} else {
siteNavigation.attr( 'aria-expanded', 'false' );
socialNavigation.attr( 'aria-expanded', 'false' );
}
menuToggle.attr( 'aria-controls', 'site-navigation social-navigation' );
} else {
menuToggle.removeAttr( 'aria-expanded' );
siteNavigation.removeAttr( 'aria-expanded' );
socialNavigation.removeAttr( 'aria-expanded' );
menuToggle.removeAttr( 'aria-controls' );
}
}
if ( jQuery.isFunction( jQuery.fn.fitVids ) ) {
jQuery('.hentry, .widget').fitVids();
}
} )( jQuery );