(function ($) {
"use strict"; // Start of use strict
//Add Smooth scroll to inner page links
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value and links to this page before overriding default behavior
if (this.getAttribute("href").startsWith("#") && (this.getAttribute("href") !== "#bb-after-header") && (this.getAttribute("href") !== "#") ){
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
if ($('#wpadminbar')[0]) {
$('html, body').animate({
scrollTop: ($(hash).offset().top - 160)
}, 800);
} else {
$('html, body').animate({
scrollTop: ($(hash).offset().top - 135)
}, 800);
}
} // End if
});
});
$(window).on('load', function () {
if ($('#bb-preloader').length) {
$('#bb-preloader').delay(600).fadeOut('slow', function () {
$(this).remove();
});
}
//If it doesn't load at the top of the page then this will set it to make room for the navbar
if (window.location.href.includes("#") && (document.documentElement.scrollTop > 135)) {
if ($('#wpadminbar')[0]) {
document.documentElement.scrollTop = document.documentElement.scrollTop - 160;
} else {
document.documentElement.scrollTop = document.documentElement.scrollTop - 135;
}
}
});
$("#bb-menu-icon").click(function () {
$('#bb-popout').animate({ left: 0 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'none');
$('#bb-close-icon').css('display', 'initial');
});
$("#bb-popout").focus(function () {
$('#bb-popout').animate({ left: 0 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'none');
$('#bb-close-icon').css('display', 'initial');
});
$("#bb-in").focus(function () {
if ($('#bb-popout')[0].style.left == "" || $('#bb-popout')[0].style.left == "-250px") {
$('#bb-popout').animate({ left: 0 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'none');
$('#bb-close-icon').css('display', 'initial');
} else {
$('#bb-popout').animate({ left: -250 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'initial');
$('#bb-close-icon').css('display', 'none');
}
});
$("#bb-close-icon").click(function () {
$('#bb-popout').animate({ left: -250 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'initial');
$('#bb-close-icon').css('display', 'none');
});
$("#bb-out").focus(function () {
if ($('#bb-popout')[0].style.left == "" || $('#bb-popout')[0].style.left == "0px") {
$('#bb-popout').animate({ left: -250 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'initial');
$('#bb-close-icon').css('display', 'none');
} else {
$('#bb-popout').animate({ left: 0 }, 'slow', function () {
// Animation complete.
});
$('#bb-menu-icon').css('display', 'none');
$('#bb-close-icon').css('display', 'initial');
}
});
//if page reloads in the middle of the screen
if ($(this).scrollTop() > 30) {
$('#site-navigation').addClass('scrolled');
}
$(document).ready(function () {
$(window).scroll(function () {
$('#site-navigation').toggleClass('scrolled', $(this).scrollTop() > 30);
if (($(this).scrollTop() > 50) && ((window.innerHeight + window.scrollY) < ($(document).height() - 100 ) )) {
$('#bb-back-to-top').fadeIn();
} else {
$('#bb-back-to-top').fadeOut();
}
if ($(this).scrollTop() < 25) {
$('#bb-scroll-down').fadeIn();
} else {
$('#bb-scroll-down').fadeOut();
}
var adscreensmall = window.matchMedia("(max-width: 600px)");
if (($(this).scrollTop() > 25) && $('#wpadminbar')[0] && adscreensmall.matches) {
document.getElementsByClassName("bb-fixed-top")[0].style.top = '0px';
document.getElementById("bb-popout").style.top = '0px';
if ($(".bb-toggle-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "30px";
} else {
document.getElementById("bb-toggle").style.top = "36px";
}
} else if ($('#wpadminbar')[0] && adscreensmall.matches){
document.getElementsByClassName("bb-fixed-top")[0].style.top = '32px';
document.getElementById("bb-popout").style.top = '46px';
if ($(".bb-toggle-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "66px";
} else {
document.getElementById("bb-toggle").style.top = "74px";
}
}
});
// scroll body to 0px on click
$('#bb-back-to-top').click(function () {
$('body,html').animate({
scrollTop: 0
}, 400);
return false;
});
});
$('#bb-scroll-down').on('click', function (event) {
var target = $('#bb-after-header');
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top - 150
}, 400);
}
});
//BEGINNING OF OLD ERROR 404 AREA
// This is not redundant. It is inside an if boolean
$(window).on('load', function () {
var ol = window.matchMedia("(max-width: 600px)");
if ((ol.matches) && (document.body.scrollTop <= 30 || document.documentElement.scrollTop <= 30)) {
bb_shrinkNavStuff();
}
bb_adminBarAdjust();
/*Extra space is formed on mobile applications. It pushes the menu button out of position.
This can not be updated at the CSS level.*/
if (document.getElementsByClassName("wp-block-search__label screen-reader-text")[0]) {
$('.wp-block-search__label.screen-reader-text').width(0);
}
//js sometimes needs a second before height and width are available.
if ($('#wp-custom-header img')[0]) {
bb_sizeImageHI();
setTimeout(bb_sizeImageHI, 5000);
setTimeout(bb_sizeImageHI, 3000);
setTimeout(bb_sizeImageHI, 1250);
setTimeout(bb_sizeImageHI, 500);
}
//js sometimes needs a second before height and width are available.
//now do it for feature images
if ($('#bb-feature-image img')[0]) {
bb_sizeImageFI();
setTimeout(bb_sizeImageFI, 5000);
setTimeout(bb_sizeImageFI, 3000);
setTimeout(bb_sizeImageFI, 1250);
setTimeout(bb_sizeImageFI, 500);
}
//js sometimes needs a second before height and width are available.
//now do it for feature images
if ($('#bb-back-image img')[0]) {
bb_sizeImageBI();
setTimeout(bb_sizeImageBI, 5000);
setTimeout(bb_sizeImageBI, 3000);
setTimeout(bb_sizeImageBI, 1250);
setTimeout(bb_sizeImageBI, 500);
}
if ($('.single .is-style-bb-block-bg-fit img')[0] || $('.page .is-style-bb-block-bg-fit img')[0] || $('.single .is-style-bb-block-bg-full img')[0] || $('.page .is-style-bb-block-bg-full img')[0]) {
bb_sizeImageBBI();
setTimeout(bb_sizeImageBBI, 5000);
setTimeout(bb_sizeImageBBI, 3000);
setTimeout(bb_sizeImageBBI, 1250);
setTimeout(bb_sizeImageBBI, 500);
}
if ($('#secondary')) {
setTimeout(sideSticker, 500);
}
});
if ($(".custom-logo").length) {
var startingLogoWidth = document.getElementsByClassName("custom-logo")[0].width;
var reducedLogoWidth = startingLogoWidth * .707;
}
var sidePiece;
try {
sidePiece = document.getElementById("secondary").innerHTML;
} catch {
//There would be an error when there is no sidebar.
}
var popOut = document.getElementById("bb-popout").innerHTML;
var sideSlide = popOut + "
" + sidePiece + "
";
if (window.innerWidth < 751 && sidePiece) {
document.getElementById("bb-popout").innerHTML = sideSlide;
try {
document.getElementsByClassName("bb-alignrightstyle")[0].style.display = "none";
} catch {
//There would be an error when there is no sidebar.
}
}
function bb_adminBarAdjust() {
if ($('#wpadminbar')[0]){
var adminWidth = window.matchMedia("(min-width: 783px)");
if (adminWidth.matches) {
document.getElementsByClassName("bb-fixed-top")[0].style.top = '32px';
document.getElementById("bb-popout").style.top = '32px';
document.getElementById("bb-popout").style.height = '92%';
if ($(".bb-toggle-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "70px";
document.getElementById("site-navigation").style.top = "32px";
} else {
document.getElementById("bb-toggle").style.top = "78px";
}
} else {
document.getElementsByClassName("bb-fixed-top")[0].style.top = '46px';
document.getElementById("bb-popout").style.top = '46px';
document.getElementById("bb-popout").style.height = '92%';
if ($(".bb-toggle-no-descrip-no-logo").length) {
var adscreensmall = window.matchMedia("(max-width: 600px)");
if (adscreensmall) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "74px";
} else {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "85px";
}
document.getElementById("site-navigation").style.top = "46px";
} else {
document.getElementById("bb-toggle").style.top = "92px";
}
}
}
}
function sideSticker() {
var winHeight = 30;
if (($(".home")[0] && !$(".paged")[0]) || $(".bb-highlight-featured-image")[0]) {
//For IOS
if (document.getElementsByClassName("bb-page-or-post-title")[0] || document.getElementsByClassName("site-description")[0]) {
if (document.getElementById("bb-feature-image")) {
winHeight = document.getElementById("bb-feature-image").clientHeight + 30;
} else if (document.getElementById("wp-custom-header")) {
winHeight = document.getElementById("wp-custom-header").clientHeight + 30;
} else if (document.getElementById("bb-back-image")) {
winHeight = document.getElementById("bb-back-image").clientHeight + 30;
} else if (document.getElementsByClassName("bb-backVid")[0]) {
winHeight = document.getElementsByClassName("bb-backVid")[0].clientHeight + 30;
} else if (document.getElementsByClassName("wp-custom-header")[0]) {
winHeight = document.getElementsByClassName("wp-custom-header")[0].clientHeight + 30;
} else {
winHeight = window.innerHeight + 30;
}
} else if (document.getElementById("wp-custom-header")) {
winHeight = document.getElementById("wp-custom-header").clientHeight + 30;
} else if (document.getElementsByClassName("bb-backVid")[0]) {
winHeight = document.getElementsByClassName("bb-backVid")[0].clientHeight + 30;
} else if (document.getElementById("bb-back-image")) {
winHeight = document.getElementById("bb-back-image").clientHeight + 30;
} else if (document.getElementsByClassName("wp-custom-header")[0]) {
winHeight = document.getElementsByClassName("wp-custom-header")[0].clientHeight + 30;
} else {
winHeight = window.innerHeight + 30;
}
if (document.getElementsByClassName("bb-page-or-post-title")[0]){
winHeight = winHeight + document.getElementsByClassName("bb-page-or-post-title")[0].clientHeight - 110;
}
else if (document.getElementsByClassName("site-description")[0]){
if (document.getElementsByClassName("bb-big_descrip_small_text")[0]) {
winHeight = winHeight + document.getElementsByClassName("site-description")[0].clientHeight - 190;
} else {
winHeight = winHeight + document.getElementsByClassName("site-description")[0].clientHeight - 165;
}
} else if (document.getElementsByClassName("site-title")[0]){
winHeight = winHeight + document.getElementsByClassName("site-title")[0].clientHeight - 185;
}
} else if ($(".blog")[0] && !$(".wp-custom-header")[0]) {
var adminWidth = window.matchMedia("(min-width: 1064px)");
if (adminWidth.matches && (document.getElementsByClassName("bb-center-nav")[0])) {
winHeight = 45;
}
}
//if page reloads in the middle of the screen
if ($(this).scrollTop() > winHeight) {
$('#secondary').addClass('sideStick');
if ($('#wpadminbar')[0] && $('.sideStick')[0]){
$('.sideStick')[0].style.top = "170px";
}
}
$(window).scroll(function () {
if ($(this).scrollTop() > winHeight) {
$('#secondary').addClass('sideStick');
if ($('#wpadminbar')[0] && $('.sideStick')[0]){
$('.sideStick')[0].style.top = "170px";
}
} else {
if ($('.sideStick')[0]) {
$('#secondary').removeClass('sideStick');
}
}
});
}
function bb_shrinkNavStuff() {
if (document.getElementById("bb-site-title-top")) {
document.getElementById("bb-site-title-top").style.fontSize = "25px";
}
if (document.getElementById("bb-site-description-top")) {
document.getElementById("bb-site-description-top").style.fontSize = "15px";
}
document.getElementById("bb-toggle").style.top = "37px";
if ($('#wpadminbar')[0]){
document.getElementById("bb-toggle").style.top = "68px";
var adminWidth = window.matchMedia("(max-width: 783px)");
if (adminWidth.matches) {
document.getElementById("bb-toggle").style.top = "78px";
}
}
if(document.getElementsByClassName("nav-menu")[0]) {
document.getElementsByClassName("nav-menu")[0].style.paddingTop = "42px";
}
if ($(".bb-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-no-descrip-no-logo")[0].style.paddingTop = "30px";
}
if ($(".bb-toggle-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "25px";
var adminWidth = window.matchMedia("(max-width: 600px)");
if (adminWidth.matches) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "25px";
}
if ($('#wpadminbar')[0]){
var adminWidth = window.matchMedia("(min-width: 783px)");
if (adminWidth.matches) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "56px";
} else {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "74px";
}
}
}
if ($(".custom-logo").length) {
document.getElementsByClassName("custom-logo")[0].width = reducedLogoWidth;
}
}
function bb_growNavStuff() {
if (document.getElementById("bb-site-title-top")) {
document.getElementById("bb-site-title-top").style.fontSize = "35px";
}
if (document.getElementById("bb-site-description-top")) {
document.getElementById("bb-site-description-top").style.fontSize = "20px";
}
document.getElementById("bb-toggle").style.top = "46px";
if ($('#wpadminbar')[0]){
var adminWidth = window.matchMedia("(min-width: 783px)");
if (adminWidth.matches) {
document.getElementById("bb-toggle").style.top = "74px";
} else {
document.getElementById("bb-toggle").style.top = "92px";
}
}
if(document.getElementsByClassName("nav-menu")[0]) {
document.getElementsByClassName("nav-menu")[0].style.paddingTop = "50px";
}
if ($(".bb-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-no-descrip-no-logo")[0].style.paddingTop = "37px";
}
if ($(".bb-toggle-no-descrip-no-logo").length) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "30px";
if ($('#wpadminbar')[0]){
var adminWidth = window.matchMedia("(min-width: 783px)");
if (adminWidth.matches) {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "61px";
} else {
document.getElementsByClassName("bb-toggle-no-descrip-no-logo")[0].style.top = "74px";
}
}
}
if ($(".custom-logo").length) {
document.getElementsByClassName("custom-logo")[0].width = startingLogoWidth;
}
}
function bb_screenAdjust() {
bb_adminBarAdjust();
bb_togVidImg();
bb_FVFeed();
if ($('#bb-feature-image img')[0]) {
bb_sizeImageFI();
}
if ($('#wp-custom-header img')[0]) {
bb_sizeImageHI();
}
if ($('#bb-back-image img')[0]) {
bb_sizeImageBI();
}
if ($('.single .is-style-bb-block-bg-fit img')[0] || $('.page .is-style-bb-block-bg-fit img')[0] || $('.single .is-style-bb-block-bg-full img')[0] || $('.page .is-style-bb-block-bg-full img')[0]) {
bb_sizeImageBBI();
}
if ($('#secondary')) {
setTimeout(sideSticker, 500);
}
var sideWidth = window.matchMedia("(max-width: 750px)");
if (sideWidth.matches) {
if (sidePiece) {
document.getElementById("bb-popout").innerHTML = sideSlide;
}
try {
document.getElementsByClassName("bb-alignrightstyle")[0].style.display = "none";
} catch (error) {
//just keep going
}
}
sideWidth = window.matchMedia("(min-width: 751px)");
if (sideWidth.matches) {
if (document.getElementById("bb-sideSlide")) {
document.getElementById("bb-sideSlide").style.display = "none";
}
try {
document.getElementsByClassName("bb-alignrightstyle")[0].style.display = "block";
} catch (error) {
//just keep going
}
}
var mq = window.matchMedia("(max-width: 600px)");
if ((mq.matches) && (document.body.scrollTop <= 30 || document.documentElement.scrollTop <= 30)) {
bb_shrinkNavStuff();
}
var mqs = window.matchMedia("(min-width: 600px)");
if ((mqs.matches) && (document.body.scrollTop <= 30 || document.documentElement.scrollTop <= 30)) {
bb_growNavStuff();
}
if ((mqs.matches) && (document.body.scrollTop > 30 || document.documentElement.scrollTop > 30)) {
bb_shrinkNavStuff();
}
}
$(window).resize(function () {
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
if ((document.activeElement.tagName === "INPUT") && isAndroid) {
//This was probably triggered by an android keyboard so don't do anything.
} else {
bb_screenAdjust();
}
});
window.addEventListener("orientationchange", function (event) {
bb_screenAdjust();
});
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
var mq = window.matchMedia("(min-width: 600px)");
if (mq.matches) {
if (document.body.scrollTop > 30 || document.documentElement.scrollTop > 30) {
bb_shrinkNavStuff();
} else {
bb_growNavStuff();
}
}
}
//placing a variable inside "$()" can throw an error,
//and a fresh object should be called for cases of incomplete data
//DON'T try to generalize and combine this with bb_sizeImageFI() or bb_sizeImageBI().
//The differences are subtle but significant and not passable as arguments
function bb_sizeImageHI() {
if (!$('#wp-custom-header video')[0]) {//an image and video will throw an error
function bb_bigHorizontal() {
height = height * proportionWidth;
var adjust = proportionWidth * 100;
var move = adjust/2;
move = (height - winHeight)/2;
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.minWidth = "100vw";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.minHeight = height.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.maxWidth = "100vw";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.maxHeight = height.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.top = "-" + move.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.left = "0px";
}
function bb_bigVertical() {
width = width * proportionHeight;
var adjust = proportionHeight * 100;
var move = adjust/2;
move = (width - winWidth)/2;
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.minHeight = "100vh";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.minWidth = width.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.maxHeight = "100vh";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.maxWidth = width.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.left = "-" + move.toString() + "px";
document.getElementById("wp-custom-header").getElementsByTagName('img')[0].style.top = "0px";
}
function bb_padHorizontal() {
width = width * proportionHeight;
var diff = winWidth - width;
var pad = diff / 2;
$('#wp-custom-header img')[0].style.paddingTop = "0px";
$('#wp-custom-header img')[0].style.paddingBottom = "0px";
$('#wp-custom-header img')[0].style.paddingLeft = pad.toString() + "px";
$('#wp-custom-header img')[0].style.paddingRight = pad.toString() + "px";
}
function bb_padVertical() {
height = height * proportionWidth;
var diff = winHeight - height;
var pad = diff / 2;
$('#wp-custom-header img')[0].style.paddingLeft = "0px";
$('#wp-custom-header img')[0].style.paddingRight = "0px";
$('#wp-custom-header img')[0].style.paddingTop = pad.toString() + "px";
$('#wp-custom-header img')[0].style.paddingBottom = pad.toString() + "px"
}
var height = $('#wp-custom-header img')[0].naturalHeight;
var width = $('#wp-custom-header img')[0].naturalWidth;
//for mobile address bar or other interior mobile screen manipulation
var winWidth = $('#wp-custom-header').width();
var winHeight = $('#wp-custom-header').height();
var proportionHeight = winHeight / height;
var proportionWidth = winWidth / width;
if (winHeight > winWidth) {
if (proportionHeight < proportionWidth) {
if (document.getElementsByClassName("bb-bigHeaderImage")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
} else {
if (document.getElementsByClassName("bb-bigHeaderImage")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
}
} else {
if (proportionHeight > proportionWidth) {
if (document.getElementsByClassName("bb-bigHeaderImage")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
} else {
if (document.getElementsByClassName("bb-bigHeaderImage")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
}
}
}
}
//placing a variable inside "$()" can throw an error
//and a fresh object should be called for cases of incomplete data
//DON'T try to generalize and combine this with bb_sizeImageHI() or bb_sizeImageBI().
//The differences are subtle but significant and not passable as arguments.
function bb_sizeImageFI() {
function bb_bigHorizontal() {
height = height * proportionWidth;
var adjust = proportionWidth * 100;
var move = adjust/2;
move = (height - winHeight)/2;
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.minWidth = "100vw";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.minHeight = height.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.maxWidth = "100vw";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.maxHeight = height.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.top = "-" + move.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.left = "0px";
}
function bb_bigVertical() {
width = width * proportionHeight;
var adjust = proportionHeight * 100;
var move = adjust/2;
move = (width - winWidth)/2;
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.minHeight = "100vh";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.minWidth = width.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.maxHeight = "100vh";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.maxWidth = width.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.left = "-" + move.toString() + "px";
document.getElementById("bb-feature-image").getElementsByTagName('img')[0].style.top = "0px";
}
function bb_padHorizontal() {
width = width * proportionHeight;
var diff = winWidth - width;
var pad = diff / 2;
$('#bb-feature-image img')[0].style.paddingTop = "0px";
$('#bb-feature-image img')[0].style.paddingBottom = "0px";
$('#bb-feature-image img')[0].style.paddingLeft = pad.toString() + "px";
$('#bb-feature-image img')[0].style.paddingRight = pad.toString() + "px";
}
function bb_padVertical() {
height = height * proportionWidth;
var diff = winHeight - height;
var pad = diff / 2;
$('#bb-feature-image img')[0].style.paddingLeft = "0px";
$('#bb-feature-image img')[0].style.paddingRight = "0px";
$('#bb-feature-image img')[0].style.paddingTop = pad.toString() + "px";
$('#bb-feature-image img')[0].style.paddingBottom = pad.toString() + "px";
}
var height = $('#bb-feature-image img')[0].naturalHeight;
var width = $('#bb-feature-image img')[0].naturalWidth;
//for mobile address bar or other interior mobile screen manipulation
var winWidth = $('#bb-feature-image').width();
var winHeight = $('#bb-feature-image').height();
var proportionHeight = winHeight / height;
var proportionWidth = winWidth / width;
if (winHeight > winWidth) {
if (proportionHeight < proportionWidth) {
if (document.getElementsByClassName("bb-bigFI")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
} else {
if (document.getElementsByClassName("bb-bigFI")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
}
} else {
if (proportionHeight > proportionWidth) {
if (document.getElementsByClassName("bb-bigFI")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
} else {
if (document.getElementsByClassName("bb-bigFI")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
}
}
}
//placing a variable inside "$()" can throw an error
//and a fresh object should be called for cases of incomplete data
//DON'T try to generalize and combine this with bb_sizeImageHI() or bb_sizeImageFI().
//The differences are subtle but significant and not passable as arguments.
function bb_sizeImageBI() {
function bb_bigHorizontal() {
height = height * proportionWidth;
var adjust = proportionWidth * 100;
var move = adjust/2;
move = (height - winHeight)/2;
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.minWidth = "100vw";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.minHeight = height.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.maxWidth = "100vw";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.maxHeight = height.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.top = "-" + move.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.left = "0px";
}
function bb_bigVertical() {
width = width * proportionHeight;
var adjust = proportionHeight * 100;
var move = adjust/2;
move = (width - winWidth)/2;
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.minHeight = "100vh";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.minWidth = width.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.maxHeight = "100vh";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.maxWidth = width.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.left = "-" + move.toString() + "px";
document.getElementById("bb-back-image").getElementsByTagName('img')[0].style.top = "0px";
}
function bb_padHorizontal() {
width = width * proportionHeight;
var diff = winWidth - width;
var pad = diff / 2;
$('#bb-back-image img')[0].style.paddingTop = "0px";
$('#bb-back-image img')[0].style.paddingBottom = "0px";
$('#bb-back-image img')[0].style.paddingLeft = pad.toString() + "px";
$('#bb-back-image img')[0].style.paddingRight = pad.toString() + "px";
}
function bb_padVertical() {
height = height * proportionWidth;
var diff = winHeight - height;
var pad = diff / 2;
$('#bb-back-image img')[0].style.paddingLeft = "0px";
$('#bb-back-image img')[0].style.paddingRight = "0px";
$('#bb-back-image img')[0].style.paddingTop = pad.toString() + "px";
$('#bb-back-image img')[0].style.paddingBottom = pad.toString() + "px";
}
var height = $('#bb-back-image img')[0].naturalHeight;
var width = $('#bb-back-image img')[0].naturalWidth;
//for mobile address bar or other interior mobile screen manipulation
var winWidth = $('#bb-back-image').width();
var winHeight = $('#bb-back-image').height();
var proportionHeight = winHeight / height;
var proportionWidth = winWidth / width;
if (winHeight > winWidth) {
if (proportionHeight < proportionWidth) {
if (document.getElementsByClassName("bb-bigBG")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
} else {
if (document.getElementsByClassName("bb-bigBG")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
}
} else {
if (proportionHeight > proportionWidth) {
if (document.getElementsByClassName("bb-bigBG")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
} else {
if (document.getElementsByClassName("bb-bigBG")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
}
}
}
//placing a variable inside "$()" can throw an error
//and a fresh object should be called for cases of incomplete data
//DON'T try to generalize and combine this with bb_sizeImageHI() or bb_sizeImageFI().
//The differences are subtle but significant and not passable as arguments.
function bb_sizeImageBBI() {
function bb_bigHorizontal() {
height = height * proportionWidth;
var adjust = proportionWidth * 100;
var move = adjust/2;
move = (height - winHeight)/2;
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.minWidth = "100vw";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.minHeight = height.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.maxWidth = "100vw";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.maxHeight = height.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.top = "-" + move.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.left = "0px";
}
function bb_bigVertical() {
width = width * proportionHeight;
var adjust = proportionHeight * 100;
var move = adjust/2;
move = (width - winWidth)/2;
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.minHeight = "100vh";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.minWidth = width.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.maxHeight = "100vh";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.maxWidth = width.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.left = "-" + move.toString() + "px";
document.getElementsByClassName("is-style-bb-block-bg-full")[0].getElementsByTagName('img')[0].style.top = "0px";
}
function bb_padHorizontal() {
width = width * proportionHeight;
var diff = winWidth - width;
var pad = diff / 2;
$('.is-style-bb-block-bg-fit img')[0].style.paddingTop = "0px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingBottom = "0px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingLeft = pad.toString() + "px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingRight = pad.toString() + "px";
}
function bb_padVertical() {
height = height * proportionWidth;
var diff = winHeight - height;
var pad = diff / 2;
$('.is-style-bb-block-bg-fit img')[0].style.paddingLeft = "0px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingRight = "0px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingTop = pad.toString() + "px";
$('.is-style-bb-block-bg-fit img')[0].style.paddingBottom = pad.toString() + "px";
}
if ($('.is-style-bb-block-bg-fit img')[0]) {
var height = $('.is-style-bb-block-bg-fit img')[0].naturalHeight;
var width = $('.is-style-bb-block-bg-fit img')[0].naturalWidth;
} else {
var height = $('.is-style-bb-block-bg-full img')[0].naturalHeight;
var width = $('.is-style-bb-block-bg-full img')[0].naturalWidth;
}
//for mobile address bar or other interior mobile screen manipulation
if ($('.is-style-bb-block-bg-fit')[0]) {
var winWidth = $('.is-style-bb-block-bg-fit').width();
var winHeight = $('.is-style-bb-block-bg-fit').height();
} else {
var winWidth = $('.is-style-bb-block-bg-full').width();
var winHeight = $('.is-style-bb-block-bg-full').height();
}
var proportionHeight = winHeight / height;
var proportionWidth = winWidth / width;
if (winHeight > winWidth) {
if (proportionHeight < proportionWidth) {
if (document.getElementsByClassName("is-style-bb-block-bg-full")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
} else {
if (document.getElementsByClassName("is-style-bb-block-bg-full")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
}
} else {
if (proportionHeight > proportionWidth) {
if (document.getElementsByClassName("is-style-bb-block-bg-full")[0]) {
bb_bigVertical();
} else {
bb_padVertical();
}
} else {
if (document.getElementsByClassName("is-style-bb-block-bg-full")[0]) {
bb_bigHorizontal();
} else {
bb_padHorizontal();
}
}
}
}
//The size of the logo on small screns can't be determined until after the page is loaded.
var mq = window.matchMedia("(max-width: 600px)");
if ((mq.matches) && (document.body.scrollTop <= 30 || document.documentElement.scrollTop <= 30)) {
if ($(".custom-logo").length) {
document.getElementsByClassName("custom-logo")[0].width = reducedLogoWidth;
}
}
if (!$("#bb-site-description-top")[0]) {//if there is no description then it needs a nudge
if ($("#bb-site-title-top")[0]) {
$("#bb-site-title-top")[0].style.paddingTop = "2.5px";
}
}
//For the main background video
if ($('.bb-backVid video')[0]) {
$('.bb-backVid video')[0].autoplay = true;
$('.bb-backVid video')[0].loop = true;
$('.bb-backVid video')[0].controls = false;
$('.bb-backVid video')[0].muted = true;
}
//for individual pages and posts
if ($('.post-template-default .bb-fv')[0] || $('.page-template-default .bb-fv')[0]) {
$('.bb-fv')[0].autoplay = true;
$('.bb-fv')[0].loop = true;
$('.bb-fv')[0].controls = false;
$('.bb-fv')[0].muted = true;
if ($('.post-template-default .bb-fv')[1] || $('.page-template-default .bb-fv')[1]) {
var i;
for (i = 1; i <= $('.bb-fv').length; i++) {
$('.bb-fv')[1].remove();
}
}
}
//(Individual cont.) if the user is using a featured image, then assume they don't want a video on small screens.
function bb_togVidImg() {
//make sure that there isn't a .bb-fv with a query loop block
if ($('.wp-block-query .bb-fv')[0] != $('.bb-fv')[0]) {
var sideWidth4 = window.matchMedia("(max-width: 1180px)");
if (sideWidth4.matches && $('.bb-fv')[0] && ($('.page-template-default .attachment-post-thumbnail')[0] || $('.post-template-default .attachment-post-thumbnail')[0])) {
$('.bb-fv')[0].style.display = "none";
$('.attachment-post-thumbnail')[0].style.display = "block";
}
var sideWidth5 = window.matchMedia("(min-width: 1180px)");
if (sideWidth5.matches && $('.bb-fv')[0] && ($('.page-template-default .attachment-post-thumbnail')[0] || $('.post-template-default .attachment-post-thumbnail')[0])) {
$('.bb-fv')[0].style.display = "block";
$('.attachment-post-thumbnail')[0].style.display = "none";
}
}
}
bb_togVidImg();
function bb_FVFeed() {
var fvCount = 0;
var fiCount = 0;
var hasFI = false;
var searchTest = false;
if ($('.post')) {
$(".post").each(function (index) {
if ($('.attachment-post-thumbnail')[fiCount] && ($(".post")[index].id == $('.attachment-post-thumbnail')[fiCount].parentElement.parentElement.parentElement.parentElement.id)) {
hasFI = true;
}
try {
searchTest = (($(".post")[index].id == $(".bb-fv")[fvCount].parentElement.parentElement.parentElement.parentElement.id));
} catch {
//don't worry about it.
}
if ((($(".bb-fv")[fvCount] && ($(".post")[index].id == $(".bb-fv")[fvCount].parentElement.parentElement.parentElement.id))) || searchTest) {
$('.bb-fv')[fvCount].autoplay = true;
$('.bb-fv')[fvCount].loop = true;
$('.bb-fv')[fvCount].controls = false;
$('.bb-fv')[fvCount].muted = true;
//remove extra bb-fv from article
if ($(".bb-fv")[fvCount + 1] && ($(".post")[index].id == $(".bb-fv")[fvCount + 1].parentElement.parentElement.parentElement.id)) {
var i = 1;
while ($(".bb-fv")[fvCount + 1] && ($(".post")[index].id == $(".bb-fv")[fvCount + 1].parentElement.parentElement.parentElement.id)) {
$('.bb-fv')[fvCount + 1].remove();
}
}
var sideWidth2 = window.matchMedia("(min-width: 1180px)");
var sideWidth3 = window.matchMedia("(max-width: 1180px)");
if (sideWidth3.matches && $('.bb-fv')[fvCount] && hasFI) {
$('.attachment-post-thumbnail')[fiCount].style.display = "block";
$('.bb-fv')[fvCount].style.display = "none";
}
if (sideWidth2.matches && $('.bb-fv')[fvCount] && hasFI) {
$('.attachment-post-thumbnail')[fiCount].style.display = "none";
$('.bb-fv')[fvCount].style.display = "block";
}
fvCount++;
}//end if bbfv
if (hasFI) {
fiCount++;
}
hasFI = false;
searchTest = false;
});
}
}
bb_FVFeed();
//END OF OLD ERROR PAGE CHECK AREA
})(jQuery);