File: /home/retoti4c1e1s/public_html/thecommitment.earth/wp-content/themes/save-life/js/_init.js
/* global jQuery:false */
/* global SAVE_LIFE_STORAGE:false */
jQuery(document).ready(function() {
"use strict";
SAVE_LIFE_STORAGE['theme_init_counter'] = 0;
save_life_init_actions();
// Theme init actions
function save_life_init_actions() {
if (SAVE_LIFE_STORAGE['vc_edit_mode'] && jQuery('.vc_empty-placeholder').length==0 && SAVE_LIFE_STORAGE['theme_init_counter']++ < 30) {
setTimeout(save_life_init_actions, 200);
return;
}
save_life_ready_actions();
save_life_resize_actions();
save_life_scroll_actions();
// Resize handlers
jQuery(window).resize(function() {
save_life_resize_actions();
});
// Add resize on VC action vc-full-width-row
// But we emulate 'action.resize_vc_row_start' and 'action.resize_vc_row_end'
// to correct resize sliders and video inside 'boxed' pages
jQuery(document).on('action.resize_vc_row_start', function(e, el) {
save_life_resize_actions();
});
// Check fullheight elements
jQuery(document).on('action.init_hidden_elements', save_life_stretch_height);
jQuery(document).on('action.init_shortcodes', save_life_stretch_height);
// Scroll handlers
jQuery(window).scroll(function() {
save_life_scroll_actions();
});
}
// Theme first load actions
//==============================================
function save_life_ready_actions() {
// Add scheme class and js support
//------------------------------------
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/,'js');
if (document.documentElement.className.indexOf(SAVE_LIFE_STORAGE['site_scheme'])==-1)
document.documentElement.className += ' ' + SAVE_LIFE_STORAGE['site_scheme'];
// Init background video
//------------------------------------
if (SAVE_LIFE_STORAGE['background_video'] && jQuery('.top_panel.with_bg_video').length > 0 && window.Bideo) {
// Waiting 10ms after mejs init
setTimeout(function() {
jQuery('.top_panel.with_bg_video').prepend('<video id="background_video" loop muted></video>');
var bv = new Bideo();
bv.init({
// Video element
videoEl: document.querySelector('#background_video'),
// Container element
container: document.querySelector('.top_panel'),
// Resize
resize: true,
// autoplay: false,
isMobile: window.matchMedia('(max-width: 768px)').matches,
playButton: document.querySelector('#background_video_play'),
pauseButton: document.querySelector('#background_video_pause'),
// Array of objects containing the src and type
// of different video formats to add
// For example:
// src: [
// { src: 'night.mp4', type: 'video/mp4' }
// { src: 'night.webm', type: 'video/webm;codecs="vp8, vorbis"' }
// ]
src: [
{
src: SAVE_LIFE_STORAGE['background_video'],
type: 'video/'+save_life_get_file_ext(SAVE_LIFE_STORAGE['background_video'])
}
],
});
}, 10);
}
// Tabs
//------------------------------------
if (jQuery('.save_life_tabs:not(.inited)').length > 0 && jQuery.ui && jQuery.ui.tabs) {
jQuery('.save_life_tabs:not(.inited)').each(function () {
// Get initially opened tab
var init = jQuery(this).data('active');
if (isNaN(init)) {
init = 0;
var active = jQuery(this).find('> ul > li[data-active="true"]').eq(0);
if (active.length > 0) {
init = active.index();
if (isNaN(init) || init < 0) init = 0;
}
} else {
init = Math.max(0, init);
}
// Init tabs
jQuery(this).addClass('inited').tabs({
active: init,
show: {
effect: 'fadeIn',
duration: 300
},
hide: {
effect: 'fadeOut',
duration: 300
},
create: function( event, ui ) {
if (ui.panel.length > 0) jQuery(document).trigger('action.init_hidden_elements', [ui.panel]);
},
activate: function( event, ui ) {
if (ui.newPanel.length > 0) jQuery(document).trigger('action.init_hidden_elements', [ui.newPanel]);
}
});
});
}
// AJAX loader for the tabs
jQuery('.save_life_tabs_ajax').on( "tabsbeforeactivate", function( event, ui ) {
if (ui.newPanel.data('need-content')) save_life_tabs_ajax_content_loader(ui.newPanel, 1, ui.oldPanel);
});
// AJAX loader for the pages in the tabs
jQuery('.save_life_tabs_ajax').on( "click", '.nav-links a', function(e) {
var panel = jQuery(this).parents('.save_life_tabs_content');
var page = 1;
var href = jQuery(this).attr('href');
var pos = -1;
if ((pos = href.lastIndexOf('/page/')) != -1 ) {
page = Number(href.substr(pos+6).replace("/", ""));
if (!isNaN(page)) page = Math.max(1, page);
}
save_life_tabs_ajax_content_loader(panel, page);
e.preventDefault();
return false;
});
// Headers
//----------------------------------------------
var rows = jQuery('.save_life_layouts_row_fixed');
// If page contain fixed rows
if (rows.length > 0) {
// Add placeholders before each row
rows.each(function() {
if (!jQuery(this).next().hasClass('save_life_layouts_row_fixed_placeholder'))
jQuery(this).after('<div class="save_life_layouts_row_fixed_placeholder"></div>');
});
jQuery(document).on('action.scroll_save_life', function() {
save_life_fix_header(rows, false);
});
jQuery(document).on('action.resize_save_life', function() {
save_life_fix_header(rows, true);
});
}
// Menu
//----------------------------------------------
// Add TOC in the side menu
if (jQuery('.menu_side_inner').length > 0 && jQuery('#toc_menu').length > 0)
jQuery('#toc_menu').appendTo('.menu_side_inner');
// Open/Close side menu
jQuery('.menu_side_button').on('click', function(e){
jQuery(this).parent().toggleClass('opened');
e.preventDefault();
return false;
});
// Add arrows to the mobile menu
jQuery('.menu_mobile .menu-item-has-children > a').append('<span class="open_child_menu"></span>');
// Open/Close mobile menu
jQuery('.sc_layouts_menu_mobile_button > a,.menu_mobile_button,.menu_mobile_description').on('click', function(e) {
if (jQuery(this).parent().hasClass('sc_layouts_menu_mobile_button_burger') && jQuery(this).next().hasClass('sc_layouts_menu_popup')) return;
jQuery('.menu_mobile_overlay').fadeIn();
jQuery('.menu_mobile').addClass('opened');
jQuery(document).trigger('action.stop_wheel_handlers');
e.preventDefault();
return false;
});
jQuery(document).on('keypress', function(e) {
if (e.keyCode == 27) {
if (jQuery('.menu_mobile.opened').length == 1) {
jQuery('.menu_mobile_overlay').fadeOut();
jQuery('.menu_mobile').removeClass('opened');
jQuery(document).trigger('action.start_wheel_handlers');
e.preventDefault();
return false;
}
}
});;
jQuery('.menu_mobile_close, .menu_mobile_overlay').on('click', function(e){
jQuery('.menu_mobile_overlay').fadeOut();
jQuery('.menu_mobile').removeClass('opened');
jQuery(document).trigger('action.start_wheel_handlers');
e.preventDefault();
return false;
});
// Open/Close mobile submenu
jQuery('.menu_mobile').on('click', 'li a, li a .open_child_menu', function(e) {
var $a = jQuery(this).hasClass('open_child_menu') ? jQuery(this).parent() : jQuery(this);
if ($a.parent().hasClass('menu-item-has-children')) {
if ($a.attr('href')=='#' || jQuery(this).hasClass('open_child_menu')) {
if ($a.siblings('ul:visible').length > 0)
$a.siblings('ul').slideUp().parent().removeClass('opened');
else {
jQuery(this).parents('li').siblings('li').find('ul:visible').slideUp().parent().removeClass('opened');
$a.siblings('ul').slideDown().parent().addClass('opened');
}
}
}
if (!jQuery(this).hasClass('open_child_menu') && save_life_is_local_link($a.attr('href')))
jQuery('.menu_mobile_close').trigger('click');
if (jQuery(this).hasClass('open_child_menu') || $a.attr('href')=='#') {
e.preventDefault();
return false;
}
});
// Init superfish menus
save_life_init_sfmenu('.sc_layouts_menu_nav:not(.inited)');
if (jQuery('.sc_layouts_menu_nav').hasClass('inited')) jQuery('.sc_layouts_menu_nav_area').addClass('menu_show');
// Forms validation
//----------------------------------------------
jQuery('select:not(.esg-sorting-select):not([class*="trx_addons_attrib_"]):not(.tribe-bar-views-select)').wrap('<div class="select_container"></div>');
// Comment form
jQuery("form#commentform").submit(function(e) {
var rez = save_life_comments_validate(jQuery(this));
if (!rez)
e.preventDefault();
return rez;
});
jQuery("form").on('keypress', '.error_field', function() {
if (jQuery(this).val() != '')
jQuery(this).removeClass('error_field');
});
// WooCommerce
//----------------------------------------------
// Change display mode
jQuery('.woocommerce,.woocommerce-page').on('click', '.save_life_shop_mode_buttons a', function(e) {
var mode = jQuery(this).hasClass('woocommerce_thumbs') ? 'thumbs' : 'list';
save_life_set_cookie('save_life_shop_mode', mode, 365);
jQuery(this).siblings('input').val(mode).parents('form').get(0).submit();
e.preventDefault();
return false;
});
// Add buttons to quantity on first run
if (jQuery('.woocommerce div.quantity .q_inc,.woocommerce-page div.quantity .q_inc').length == 0) {
var woocomerce_inc_dec = '<span class="q_inc"></span><span class="q_dec"></span>';
jQuery('.woocommerce div.quantity,.woocommerce-page div.quantity').append(woocomerce_inc_dec);
jQuery('.woocommerce div.quantity,.woocommerce-page div.quantity').on('click', '>span', function(e) {
woocomerce_inc_dec_click(jQuery(this));
e.preventDefault();
return false;
});
}
// Add buttons to quantity after the cart is updated
jQuery(document.body).on('updated_wc_div', function() {
if (jQuery('.woocommerce div.quantity .q_inc,.woocommerce-page div.quantity .q_inc').length == 0) {
jQuery('.woocommerce div.quantity,.woocommerce-page div.quantity').append(woocomerce_inc_dec);
jQuery('.woocommerce div.quantity,.woocommerce-page div.quantity').on('click', '>span', function(e) {
woocomerce_inc_dec_click(jQuery(this));
e.preventDefault();
return false;
});
}
});
// Inc/Dec quantity on buttons inc/dec
function woocomerce_inc_dec_click(button) {
var f = button.siblings( 'input' );
if (button.hasClass( 'q_inc' )) {
f.val( ( f.val() == '' ? 0 : parseInt( f.val(), 10 ) ) + 1 ).trigger( 'change' );
} else {
f.val( Math.max( 0, ( f.val() == '' ? 0 : parseInt( f.val(), 10 ) ) - 1 ) ).trigger( 'change' );
}
}
// Make buttons from links
var wishlist = jQuery('.woocommerce .product .yith-wcwl-add-to-wishlist');
if (wishlist.length > 0) {
wishlist.find('.add_to_wishlist').addClass('button');
if (jQuery('.woocommerce .product .compare').length > 0) jQuery('.woocommerce .product .compare').insertBefore(wishlist);
}
// Add stretch behaviour to WooC tabs area
jQuery('.single-product .woocommerce-tabs').wrap('<div class="trx-stretch-width"></div>');
jQuery('.trx-stretch-width').wrap('<div class="trx-stretch-width-wrap scheme_default"></div>');
jQuery('.trx-stretch-width').after('<div class="trx-stretch-width-original"></div>');
save_life_stretch_width();
// Pagination
//------------------------------------
// Load more
jQuery('.nav-links-more a').on('click', function(e) {
if (SAVE_LIFE_STORAGE['load_more_link_busy']) return;
SAVE_LIFE_STORAGE['load_more_link_busy'] = true;
var more = jQuery(this);
var page = Number(more.data('page'));
var max_page = Number(more.data('max-page'));
if (page >= max_page) {
more.parent().hide();
return;
}
more.parent().addClass('loading');
var panel = more.parents('.save_life_tabs_content');
if (panel.length == 0) { // Load simple page content
jQuery.get(location.href, {
paged: page+1
}).done(function(response) {
// Get inline styles and add to the page styles
var p1 = response.indexOf('save_life-inline-styles-inline-css');
if (p1 > 0) {
p1 = response.indexOf('>', p1) + 1;
var p2 = response.indexOf('</style>', p1);
var inline_css_add = response.substring(p1, p2);
var inline_css = jQuery('#save_life-inline-styles-inline-css');
if (inline_css.length == 0) jQuery('body').append('<style id="save_life-inline-styles-inline-css" type="text/css">' + inline_css_add + '</style>');
else inline_css.append(inline_css_add);
}
// Get new posts and append to the .posts_container
save_life_loadmore_add_items(jQuery('.content > .posts_container').eq(0), jQuery(response).find('.content > .posts_container > article,.content > .posts_container > div[class*="column-"],.content > .posts_container > .masonry_item'));
});
} else { // Load tab's panel content
jQuery.post(SAVE_LIFE_STORAGE['ajax_url'], {
nonce: SAVE_LIFE_STORAGE['ajax_nonce'],
action: 'save_life_ajax_get_posts',
blog_template: panel.data('blog-template'),
blog_style: panel.data('blog-style'),
posts_per_page: panel.data('posts-per-page'),
cat: panel.data('cat'),
parent_cat: panel.data('parent-cat'),
post_type: panel.data('post-type'),
taxonomy: panel.data('taxonomy'),
page: page+1
}).done(function(response) {
var rez = {};
try {
rez = JSON.parse(response);
} catch (e) {
rez = { error: SAVE_LIFE_STORAGE['strings']['ajax_error'] };
console.log(response);
}
if (rez.error !== '') {
panel.html('<div class="save_life_error">'+rez.error+'</div>');
} else {
save_life_loadmore_add_items(panel.find('.posts_container'), jQuery(rez.data).find('article'));
}
});
}
// Append items to the container
function save_life_loadmore_add_items(container, items) {
if (container.length > 0 && items.length > 0) {
container.append(items);
if (container.hasClass('portfolio_wrap') || container.hasClass('masonry_wrap')) {
container.masonry( 'appended', items );
if (container.hasClass('gallery_wrap')) {
SAVE_LIFE_STORAGE['GalleryFx'][container.attr('id')].appendItems();
}
}
more.data('page', page+1).parent().removeClass('loading');
// Remove TOC if exists (rebuild on init_shortcodes)
jQuery('#toc_menu').remove();
// Trigger actions to init new elements
SAVE_LIFE_STORAGE['init_all_mediaelements'] = true;
jQuery(document).trigger('action.init_shortcodes', [container.parent()]);
jQuery(document).trigger('action.init_hidden_elements', [container.parent()]);
}
if (page+1 >= max_page)
more.parent().hide();
else
SAVE_LIFE_STORAGE['load_more_link_busy'] = false;
// Fire 'window.scroll' after clearing busy state
jQuery(window).trigger('scroll');
// Fire 'window.resize'
jQuery( window ).trigger( 'resize' );
}
e.preventDefault();
return false;
});
// Infinite scroll
jQuery(document).on('action.scroll_save_life', function(e) {
if (SAVE_LIFE_STORAGE['load_more_link_busy']) return;
var container = jQuery('.content > .posts_container').eq(0);
var inf = jQuery('.nav-links-infinite');
if (inf.length == 0) return;
if (container.offset().top + container.height() < jQuery(window).scrollTop() + jQuery(window).height()*1.5)
inf.find('a').trigger('click');
});
// Comments
//------------------------------------
// Checkbox with "I agree..."
if (jQuery('input[type="checkbox"][name="i_agree_privacy_policy"]:not(.inited),input[type="checkbox"][name="gdpr_terms"]:not(.inited),input[type="checkbox"][name="wpgdprc"]:not(.inited)').length > 0) {
jQuery('input[type="checkbox"][name="i_agree_privacy_policy"]:not(.inited),input[type="checkbox"][name="gdpr_terms"]:not(.inited),input[type="checkbox"][name="wpgdprc"]:not(.inited)')
.addClass('inited')
.on('change', function(e) {
if (jQuery(this).get(0).checked)
jQuery(this).parents('form').find('button,input[type="submit"]').removeAttr('disabled');
else
jQuery(this).parents('form').find('button,input[type="submit"]').attr('disabled', 'disabled');
}).trigger('change');
}
// Other settings
//------------------------------------
jQuery(document).trigger('action.ready_save_life');
// Init post format specific scripts
jQuery(document).on('action.init_hidden_elements', save_life_init_post_formats);
// Init hidden elements (if exists)
jQuery(document).trigger('action.init_hidden_elements', [jQuery('body').eq(0)]);
} //end ready
// Scroll actions
//==============================================
// Do actions when page scrolled
function save_life_scroll_actions() {
var scroll_offset = jQuery(window).scrollTop();
var adminbar_height = Math.max(0, jQuery('#wpadminbar').height());
// Call theme/plugins specific action (if exists)
//----------------------------------------------
jQuery(document).trigger('action.scroll_save_life');
// Fix/unfix sidebar
save_life_fix_sidebar();
// Shift top and footer panels when header position equal to 'Under content'
if (jQuery('body').hasClass('header_position_under') && !save_life_browser_is_mobile()) {
var delta = 50;
var adminbar = jQuery('#wpadminbar');
var adminbar_height = adminbar.length == 0 && adminbar.css('position') == 'fixed' ? 0 : adminbar.height();
var header = jQuery('.top_panel');
var header_height = header.height();
var mask = header.find('.top_panel_mask');
if (mask.length==0) {
header.append('<div class="top_panel_mask"></div>');
mask = header.find('.top_panel_mask');
}
if (scroll_offset > adminbar_height) {
var offset = scroll_offset - adminbar_height;
if (offset <= header_height) {
var mask_opacity = Math.max(0, Math.min(0.8, (offset-delta)/header_height));
// Don't shift header with Revolution slider in Chrome
if ( !(/Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor)) || header.find('.slider_engine_revo').length == 0 )
header.css('top', Math.round(offset/1.2)+'px');
mask.css({
'opacity': mask_opacity,
'display': offset==0 ? 'none' : 'block'
});
} else if (parseInt(header.css('top')) != 0) {
header.css('top', Math.round(offset/1.2)+'px');
}
} else if (parseInt(header.css('top')) != 0 || mask.css('display')!='none') {
header.css('top', '0px');
mask.css({
'opacity': 0,
'display': 'none'
});
}
var footer = jQuery('.footer_wrap');
var footer_height = Math.min(footer.height(), jQuery(window).height());
var footer_visible = (scroll_offset + jQuery(window).height()) - (header.outerHeight() + jQuery('.page_content_wrap').outerHeight());
if (footer_visible > 0) {
mask = footer.find('.top_panel_mask');
if (mask.length==0) {
footer.append('<div class="top_panel_mask"></div>');
mask = footer.find('.top_panel_mask');
}
if (footer_visible <= footer_height) {
var mask_opacity = Math.max(0, Math.min(0.8, (footer_height - footer_visible)/footer_height));
// Don't shift header with Revolution slider in Chrome
if ( !(/Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor)) || footer.find('.slider_engine_revo').length == 0 )
footer.css('top', -Math.round((footer_height - footer_visible)/1.2)+'px');
mask.css({
'opacity': mask_opacity,
'display': footer_height - footer_visible <= 0 ? 'none' : 'block'
});
} else if (parseInt(footer.css('top')) != 0 || mask.css('display')!='none') {
footer.css('top', 0);
mask.css({
'opacity': 0,
'display': 'none'
});
}
}
}
}
// Resize actions
//==============================================
// Do actions when page scrolled
function save_life_resize_actions(cont) {
save_life_check_layout();
save_life_fix_sidebar();
save_life_fix_footer();
save_life_stretch_width(cont);
save_life_stretch_height(null, cont);
save_life_resize_video(cont);
save_life_vc_row_fullwidth_to_boxed(cont);
if (SAVE_LIFE_STORAGE['menu_side_stretch']) save_life_stretch_sidemenu();
// Call theme/plugins specific action (if exists)
//----------------------------------------------
jQuery(document).trigger('action.resize_save_life', [cont]);
}
// Stretch sidemenu (if present)
function save_life_stretch_sidemenu() {
var toc_items = jQuery('.menu_side_wrap .toc_menu_item');
if (toc_items.length < 5) return;
var toc_items_height = jQuery(window).height() - jQuery('.menu_side_wrap .sc_layouts_logo').outerHeight() - toc_items.length;
var th = Math.floor(toc_items_height / toc_items.length);
var th_add = toc_items_height - th*toc_items.length;
toc_items.find(".toc_menu_description,.toc_menu_icon").css({
'height': th+'px',
'lineHeight': th+'px'
});
toc_items.eq(0).find(".toc_menu_description,.toc_menu_icon").css({
'height': (th+th_add)+'px',
'lineHeight': (th+th_add)+'px'
});
}
// Check for mobile layout
function save_life_check_layout() {
if (jQuery('body').hasClass('no_layout'))
jQuery('body').removeClass('no_layout');
var w = window.innerWidth;
if (w == undefined)
w = jQuery(window).width()+(jQuery(window).height() < jQuery(document).height() || jQuery(window).scrollTop() > 0 ? 16 : 0);
if (SAVE_LIFE_STORAGE['mobile_layout_width'] >= w) {
if (!jQuery('body').hasClass('mobile_layout')) {
jQuery('body').removeClass('desktop_layout').addClass('mobile_layout');
}
} else {
if (!jQuery('body').hasClass('desktop_layout')) {
jQuery('body').removeClass('mobile_layout').addClass('desktop_layout');
jQuery('.menu_mobile').removeClass('opened');
jQuery('.menu_mobile_overlay').hide();
}
}
}
// Stretch area to full window width
function save_life_stretch_width(cont) {
if (cont===undefined) cont = jQuery('body');
cont.find('.trx-stretch-width').each(function() {
var $el = jQuery(this);
var $el_cont = $el.parents('.page_wrap');
var $el_cont_offset = 0;
if ($el_cont.length == 0)
$el_cont = jQuery(window);
else
$el_cont_offset = $el_cont.offset().left;
var $el_full = $el.next('.trx-stretch-width-original');
var el_margin_left = parseInt( $el.css( 'margin-left' ), 10 );
var el_margin_right = parseInt( $el.css( 'margin-right' ), 10 );
var offset = $el_cont_offset - $el_full.offset().left - el_margin_left;
var width = $el_cont.width();
if (!$el.hasClass('inited')) {
$el.addClass('inited invisible');
$el.css({
'position': 'relative',
'box-sizing': 'border-box'
});
}
$el.css({
'left': offset,
'width': $el_cont.width()
});
if ( !$el.hasClass('trx-stretch-content') ) {
var padding = Math.max(0, -1*offset);
var paddingRight = Math.max(0, width - padding - $el_full.width() + el_margin_left + el_margin_right);
$el.css( { 'padding-left': padding + 'px', 'padding-right': paddingRight + 'px' } );
}
$el.removeClass('invisible');
});
}
// Stretch area to the full window height
function save_life_stretch_height(e, cont) {
if (cont===undefined) cont = jQuery('body');
cont.find('.trx-stretch-height').each(function () {
var fullheight_item = jQuery(this);
// If item now invisible
if (jQuery(this).parents('div:hidden,article:hidden').length > 0) {
return;
}
var wh = 0;
var fullheight_row = jQuery(this).parents('.vc_row-o-full-height');
if (fullheight_row.length > 0) {
wh = fullheight_row.height();
} else {
if (screen.width > 1000) {
var adminbar = jQuery('#wpadminbar');
wh = jQuery(window).height() - (adminbar.length > 0 ? adminbar.height() : 0);
} else
wh = 'auto';
}
if (wh=='auto' || wh > 0) fullheight_item.height(wh);
});
}
// Fit video frames to document width
function save_life_resize_video(cont) {
if (cont===undefined) cont = jQuery('body');
cont.find('video').each(function() {
var video = jQuery(this).eq(0);
var ratio = (video.data('ratio')!=undefined ? video.data('ratio').split(':') : [16,9]);
ratio = ratio.length!=2 || ratio[0]==0 || ratio[1]==0 ? 16/9 : ratio[0]/ratio[1];
var mejs_cont = video.parents('.mejs-video');
var w_attr = video.data('width');
var h_attr = video.data('height');
if (!w_attr || !h_attr) {
w_attr = video.attr('width');
h_attr = video.attr('height');
if (!w_attr || !h_attr) return;
video.data({'width': w_attr, 'height': h_attr});
}
var percent = (''+w_attr).substr(-1)=='%';
w_attr = parseInt(w_attr);
h_attr = parseInt(h_attr);
var w_real = Math.round(mejs_cont.length > 0 ? Math.min(percent ? 10000 : w_attr, mejs_cont.parents('div,article').width()) : video.width()),
h_real = Math.round(percent ? w_real/ratio : w_real/w_attr*h_attr);
if (parseInt(video.attr('data-last-width'))==w_real) return;
if (mejs_cont.length > 0 && mejs) {
save_life_set_mejs_player_dimensions(video, w_real, h_real);
}
if (percent) {
video.height(h_real);
} else {
video.attr({'width': w_real, 'height': h_real}).css({'width': w_real+'px', 'height': h_real+'px'});
}
video.attr('data-last-width', w_real);
});
cont.find('.video_frame iframe, iframe').each(function() {
var iframe = jQuery(this).eq(0);
if (iframe.length === 0 || iframe.attr( 'src' ) === undefined || iframe.attr( 'src' ).indexOf( 'soundcloud' ) > 0) {
return;
}
var ratio = (iframe.data('ratio')!=undefined
? iframe.data('ratio').split(':')
: (iframe.parent().data('ratio')!=undefined
? iframe.parent().data('ratio').split(':')
: (iframe.find('[data-ratio]').length>0
? iframe.find('[data-ratio]').data('ratio').split(':')
: [16,9]
)
)
);
ratio = ratio.length!=2 || ratio[0]==0 || ratio[1]==0 ? 16/9 : ratio[0]/ratio[1];
var w_attr = iframe.attr('width');
var h_attr = iframe.attr('height');
if (!w_attr || !h_attr) {
return;
}
var percent = (''+w_attr).substr(-1)=='%';
w_attr = parseInt(w_attr);
h_attr = parseInt(h_attr);
var pw = iframe.parent().width(),
ph = iframe.parent().height(),
w_real = pw,
h_real = Math.round(percent ? w_real/ratio : w_real/w_attr*h_attr);
if (iframe.parent().css('position') == 'absolute' && h_real > ph) {
h_real = ph;
w_real = Math.round(percent ? h_real*ratio : h_real*w_attr/h_attr)
}
if (parseInt(iframe.attr('data-last-width'))==w_real) return;
iframe.css({'width': w_real+'px', 'height': h_real+'px'});
iframe.attr('data-last-width', w_real);
});
}
// Set Media Elements player dimensions
function save_life_set_mejs_player_dimensions(video, w, h) {
if (mejs) {
for (var pl in mejs.players) {
if (mejs.players[pl].media.src == video.attr('src')) {
if (mejs.players[pl].media.setVideoSize) {
mejs.players[pl].media.setVideoSize(w, h);
}
mejs.players[pl].setPlayerSize(w, h);
mejs.players[pl].setControlsSize();
}
}
}
}
// Recalculate width of the vc_row[data-vc-full-width="true"] when content boxed or menu_style=='left|right'
function save_life_vc_row_fullwidth_to_boxed(row) {
if (jQuery('body').hasClass('body_style_boxed') || jQuery('body').hasClass('menu_style_side')) {
if (row === undefined) row = jQuery('.vc_row[data-vc-full-width="true"]');
var width_content = jQuery('.page_wrap').width();
var width_content_wrap = jQuery('.page_content_wrap .content_wrap').width();
var indent = ( width_content - width_content_wrap ) / 2;
var rtl = jQuery('html').attr('dir') == 'rtl';
row.each( function() {
var mrg = parseInt(jQuery(this).css('marginLeft'));
jQuery(this).css({
'width': width_content,
'left': rtl ? 'auto' : -indent-mrg,
'right': rtl ? -indent-mrg : 'auto',
'padding-left': indent+mrg,
'padding-right': indent+mrg
});
if (jQuery(this).attr('data-vc-stretch-content')) {
jQuery(this).css({
'padding-left': 0,
'padding-right': 0
});
}
});
}
}
// Fix/unfix header
function save_life_fix_header(rows, resize) {
if (jQuery(window).width() <= 800) {
rows.removeClass('save_life_layouts_row_fixed_on').css({'top': 'auto'});
return;
}
var scroll_offset = jQuery(window).scrollTop();
var admin_bar = jQuery('#wpadminbar');
var rows_offset = Math.max(0, admin_bar.length > 0 && admin_bar.css('position')=='fixed' ? admin_bar.height() : 0);
rows.each(function() {
var placeholder = jQuery(this).next();
var offset = parseInt(jQuery(this).hasClass('save_life_layouts_row_fixed_on') ? placeholder.offset().top : jQuery(this).offset().top);
if (isNaN(offset)) offset = 0;
// Fix/unfix row
if (scroll_offset + rows_offset <= offset) {
if (jQuery(this).hasClass('save_life_layouts_row_fixed_on')) {
jQuery(this).removeClass('save_life_layouts_row_fixed_on').css({'top': 'auto'});
}
} else {
var h = jQuery(this).outerHeight();
if (!jQuery(this).hasClass('save_life_layouts_row_fixed_on')) {
if (rows_offset + h < jQuery(window).height() * 0.33) {
placeholder.height(h);
jQuery(this).addClass('save_life_layouts_row_fixed_on').css({'top': rows_offset+'px'});
h = jQuery(this).outerHeight();
}
} else if (resize && jQuery(this).hasClass('save_life_layouts_row_fixed_on') && jQuery(this).offset().top != rows_offset) {
jQuery(this).css({'top': rows_offset+'px'});
}
rows_offset += h;
}
});
}
// Fix/unfix footer
function save_life_fix_footer() {
if (jQuery('body').hasClass('header_position_under') && !save_life_browser_is_mobile()) {
var ft = jQuery('.footer_wrap');
if (ft.length > 0) {
var ft_height = ft.outerHeight(false),
pc = jQuery('.page_content_wrap'),
pc_offset = pc.offset().top,
pc_height = pc.height();
if (pc_offset + pc_height + ft_height < jQuery(window).height()) {
if (ft.css('position')!='absolute') {
ft.css({
'position': 'absolute',
'left': 0,
'bottom': 0,
'width' :'100%'
});
}
} else {
if (ft.css('position')!='relative') {
ft.css({
'position': 'relative',
'left': 'auto',
'bottom': 'auto'
});
}
}
}
}
}
// Fix/unfix sidebar
function save_life_fix_sidebar() {
var sb = jQuery('.sidebar');
if (sb.length > 0) {
// Unfix when sidebar is under content
if (jQuery('.page_content_wrap .content_wrap .content').css('float') == 'none') {
if (sb.css('position')=='fixed') {
sb.css({
'float': sb.hasClass('right') ? 'right' : 'left',
'position': 'static'
});
}
} else {
var sb_height = sb.outerHeight() + 30;
var content_height = sb.siblings('.content').outerHeight();
var scroll_offset = jQuery(window).scrollTop();
var top_panel_height = (jQuery('.top_panel').length > 0 ? jQuery('.top_panel').outerHeight()+parseInt(jQuery('.top_panel').css('marginBottom')) : 0)
+ (jQuery('.top_panel_title').length > 0 ? jQuery('.top_panel_title').outerHeight() : 0);
var widgets_above_page_height = jQuery('.widgets_above_page_wrap').length > 0 ? jQuery('.widgets_above_page_wrap').height() : 0;
var page_padding = parseInt(jQuery('.page_content_wrap').css('paddingTop'));
if (isNaN(page_padding)) page_padding = 0;
var top_panel_fixed_height = top_panel_height;
if (jQuery('.sc_layouts_row_fixed_on').length > 0) {
top_panel_fixed_height = 0;
jQuery('.sc_layouts_row_fixed_on').each(function() {
top_panel_fixed_height += jQuery(this).outerHeight();
});
}
if (sb_height < content_height &&
(sb_height >= jQuery(window).height() && scroll_offset + jQuery(window).height() > sb_height+top_panel_height+widgets_above_page_height+page_padding
||
sb_height < jQuery(window).height() && scroll_offset > top_panel_height+widgets_above_page_height+page_padding )
) {
// Fix when sidebar bottom appear
if (sb.css('position')!=='fixed') {
var sb_top = sb_height >= jQuery(window).height()
? Math.min(0, jQuery(window).height() - sb_height)
: top_panel_fixed_height+widgets_above_page_height+page_padding;
sb.css({
'float': 'none',
'position': 'fixed',
'top': sb_top + 'px'
});
}
// Detect horizontal position when resize
var pos = jQuery('.page_content_wrap .content_wrap').position();
pos = pos.left + Math.max(0, parseInt(jQuery('.page_content_wrap .content_wrap').css('paddingLeft'))) + Math.max(0, parseInt(jQuery('.page_content_wrap .content_wrap').css('marginLeft')));
if (sb.hasClass('right'))
sb.css({ 'right': pos });
else
sb.css({ 'left': pos });
// Shift to top when footer appear
var footer_top = 0;
var footer_pos = jQuery('.footer_wrap').position();
var widgets_below_page_pos = jQuery('.widgets_below_page_wrap').position();
if (widgets_below_page_pos)
footer_top = widgets_below_page_pos.top;
else if (footer_pos)
footer_top = footer_pos.top;
if (footer_top > 0 && scroll_offset + jQuery(window).height() > footer_top)
sb.css({
'top': Math.min(top_panel_fixed_height+page_padding, jQuery(window).height() - sb_height - (scroll_offset + jQuery(window).height() - footer_top + 30)) + 'px'
});
else
sb.css({
'top': Math.min(top_panel_fixed_height+page_padding, jQuery(window).height() - sb_height) + 'px'
});
} else {
// Unfix when page scrolling to top
if (sb.css('position')=='fixed') {
sb.css({
'float': sb.hasClass('right') ? 'right' : 'left',
'position': 'static',
'top': 'auto',
'left': 'auto',
'right': 'auto'
});
}
}
}
}
}
// Navigation
//==============================================
// Init Superfish menu
function save_life_init_sfmenu(selector) {
jQuery(selector).show().each(function() {
var animation_in = jQuery(this).parent().data('animation_in');
if (animation_in == undefined) animation_in = "none";
var animation_out = jQuery(this).parent().data('animation_out');
if (animation_out == undefined) animation_out = "none";
jQuery(this).addClass('inited').superfish({
delay: 500,
animation: {
opacity: 'show'
},
animationOut: {
opacity: 'hide'
},
speed: animation_in!='none' ? 500 : 200,
speedOut: animation_out!='none' ? 500 : 200,
autoArrows: false,
dropShadows: false,
onBeforeShow: function(ul) {
if (jQuery(this).parents("ul").length > 1){
var w = jQuery(window).width();
var par_offset = jQuery(this).parents("ul").offset().left;
var par_width = jQuery(this).parents("ul").outerWidth();
var ul_width = jQuery(this).outerWidth();
if (par_offset+par_width+ul_width > w-20 && par_offset-ul_width > 0)
jQuery(this).addClass('submenu_left');
else
jQuery(this).removeClass('submenu_left');
}
if (animation_in!='none') {
jQuery(this).removeClass('animated fast '+animation_out);
jQuery(this).addClass('animated fast '+animation_in);
}
},
onBeforeHide: function(ul) {
if (animation_out!='none') {
jQuery(this).removeClass('animated fast '+animation_in);
jQuery(this).addClass('animated fast '+animation_out);
}
}
});
});
}
// Post formats init
//=====================================================
function save_life_init_post_formats(e, cont) {
// MediaElement init
save_life_init_media_elements(cont);
// Video play button
cont.find('.format-video .post_featured.with_thumb .post_video_hover:not(.inited)')
.addClass('inited')
.on('click', function(e) {
jQuery(this).parents('.post_featured')
.addClass('post_video_play')
.find('.post_video').html(jQuery(this).data('video'));
jQuery(window).trigger('resize');
e.preventDefault();
return false;
});
}
function save_life_init_media_elements(cont) {
if (SAVE_LIFE_STORAGE['use_mediaelements'] && cont.find('audio:not(.inited),video:not(.inited)').length > 0) {
if (window.mejs) {
if (window.mejs.MepDefaults) window.mejs.MepDefaults.enableAutosize = true;
if (window.mejs.MediaElementDefaults) window.mejs.MediaElementDefaults.enableAutosize = true;
cont.find('audio:not(.inited),video:not(.inited)').each(function() {
if (jQuery(this).parents('.mejs-mediaelement').length == 0
&& jQuery( this ).parents( '.wp-block-video' ).length == 0
&& ! jQuery( this ).hasClass( 'wp-block-cover__video-background' )
&& jQuery( this ).parents( '.elementor-background-video-container' ).length == 0
&& (SAVE_LIFE_STORAGE['init_all_mediaelements'] || (!jQuery(this).hasClass('wp-audio-shortcode') && !jQuery(this).hasClass('wp-video-shortcode') && !jQuery(this).parent().hasClass('wp-playlist')))) {
var media_tag = jQuery(this);
var settings = {
enableAutosize: true,
videoWidth: -1, // if set, overrides <video width>
videoHeight: -1, // if set, overrides <video height>
audioWidth: '100%', // width of audio player
audioHeight: 30, // height of audio player
success: function(mejs) {
var autoplay, loop;
if ( 'flash' === mejs.pluginType ) {
autoplay = mejs.attributes.autoplay && 'false' !== mejs.attributes.autoplay;
loop = mejs.attributes.loop && 'false' !== mejs.attributes.loop;
autoplay && mejs.addEventListener( 'canplay', function () {
mejs.play();
}, false );
loop && mejs.addEventListener( 'ended', function () {
mejs.play();
}, false );
}
}
};
jQuery(this).mediaelementplayer(settings);
}
});
} else
setTimeout(function() { save_life_init_media_elements(cont); }, 400);
}
}
// Load the tab's content
function save_life_tabs_ajax_content_loader(panel, page, oldPanel) {
if (panel.html().replace(/\s/g, '')=='') {
var height = oldPanel === undefined ? panel.height() : oldPanel.height();
if (isNaN(height) || height < 100) height = 100;
panel.html('<div class="save_life_tab_holder" style="min-height:'+height+'px;"></div>');
} else
panel.find('> *').addClass('save_life_tab_content_remove');
panel.data('need-content', false).addClass('save_life_loading');
jQuery.post(SAVE_LIFE_STORAGE['ajax_url'], {
nonce: SAVE_LIFE_STORAGE['ajax_nonce'],
action: 'save_life_ajax_get_posts',
blog_template: panel.data('blog-template'),
blog_style: panel.data('blog-style'),
posts_per_page: panel.data('posts-per-page'),
cat: panel.data('cat'),
parent_cat: panel.data('parent-cat'),
post_type: panel.data('post-type'),
taxonomy: panel.data('taxonomy'),
page: page
}).done(function(response) {
panel.removeClass('save_life_loading');
var rez = {};
try {
rez = JSON.parse(response);
} catch (e) {
rez = { error: SAVE_LIFE_STORAGE['strings']['ajax_error'] };
console.log(response);
}
if (rez.error !== '') {
panel.html('<div class="save_life_error">'+rez.error+'</div>');
} else {
panel.prepend(rez.data).fadeIn(function() {
jQuery(document).trigger('action.init_shortcodes', [panel]);
jQuery(document).trigger('action.init_hidden_elements', [panel]);
jQuery(window).trigger('scroll');
setTimeout(function() {
panel.find('.save_life_tab_holder,.save_life_tab_content_remove').remove();
jQuery(window).trigger('scroll');
}, 600);
});
}
});
}
// Forms validation
//-------------------------------------------------------
// Comments form
function save_life_comments_validate(form) {
form.find('input').removeClass('error_field');
var comments_args = {
error_message_text: SAVE_LIFE_STORAGE['strings']['error_global'], // Global error message text (if don't write in checked field)
error_message_show: true, // Display or not error message
error_message_time: 4000, // Error message display time
error_message_class: 'save_life_messagebox save_life_messagebox_style_error', // Class appended to error message block
error_fields_class: 'error_field', // Class appended to error fields
exit_after_first_error: false, // Cancel validation and exit after first error
rules: [
{
field: 'comment',
min_length: { value: 1, message: SAVE_LIFE_STORAGE['strings']['text_empty'] },
max_length: { value: SAVE_LIFE_STORAGE['message_maxlength'], message: SAVE_LIFE_STORAGE['strings']['text_long']}
}
]
};
if (form.find('.comments_author input[aria-required="true"]').length > 0) {
comments_args.rules.push(
{
field: 'author',
min_length: { value: 1, message: SAVE_LIFE_STORAGE['strings']['name_empty']},
max_length: { value: 60, message: SAVE_LIFE_STORAGE['strings']['name_long']}
}
);
}
if (form.find('.comments_email input[aria-required="true"]').length > 0) {
comments_args.rules.push(
{
field: 'email',
min_length: { value: 1, message: SAVE_LIFE_STORAGE['strings']['email_empty']},
max_length: { value: 60, message: SAVE_LIFE_STORAGE['strings']['email_long']},
mask: { value: SAVE_LIFE_STORAGE['email_mask'], message: SAVE_LIFE_STORAGE['strings']['email_not_valid']}
}
);
}
var error = save_life_form_validate(form, comments_args);
return !error;
}
//Open new windows in new tab
jQuery('a').filter(function() {
"use strict";
return this.hostname && this.hostname !== location.hostname;
}).attr('target','_blank');
// Bubble submit() up for widget "Categories"
var s = jQuery("select:not(.esg-sorting-select)");
if ( s.parents( '.widget_categories' ).length > 0 ) {
s.parent().each( function (ind, item) { jQuery(item).get(0).submit = function() {
jQuery(item).closest('form').submit();
}; }); }
});