jQuery(document).ready(function(){
"use strict";
var ready_busy=true;
var theme_init_counter=0;
var $window=jQuery(window),
$document=jQuery(document),
$body=jQuery('body');
var $body_wrap,
$page_wrap,
$header,
$footer,
$menu_side_wrap,
$menu_side_logo;
var _header_height=0,
_footer_height=0;
var $page_content_wrap,
$content,
$sidebar,
$cur_page_title_tag,
$single_nav_links_fixed,
$single_post_info_fixed,
$single_post_scrollers,
$stretch_width;
var $nav_link_infinite;
$document.on('action.new_post_added', update_jquery_links);
$document.on('action.got_ajax_response', update_jquery_links);
$document.on('action.init_hidden_elements', update_jquery_links);
var first_run=true;
function update_jquery_links(e){
if(first_run&&e && e.namespace=='init_hidden_elements'){
first_run=false;
return;
}
$body_wrap=jQuery('.body_wrap'),
$page_wrap=jQuery('.page_wrap'),
$header=jQuery('.top_panel'),
_header_height=$header.length===0 ? 0:$header.height(),
$footer=jQuery('.footer_wrap'),
_footer_height=$footer.length===0 ? 0:$footer.height(),
$menu_side_wrap=jQuery('.menu_side_wrap'),
$menu_side_logo=$menu_side_wrap.find('.sc_layouts_logo');
$page_content_wrap=jQuery('.page_content_wrap');
$content=jQuery('.content');
$sidebar=jQuery('.sidebar:not(.sidebar_fixed_placeholder)');
$cur_page_title_tag=jQuery('.sc_layouts_title_caption, head title').eq(0);
$nav_link_infinite=jQuery('.nav-links-infinite');
$single_nav_links_fixed=jQuery('.nav-links-single.nav-links-fixed');
$single_post_info_fixed=jQuery('.post_info_vertical.post_info_vertical_fixed');
$single_post_scrollers=jQuery('.nav-links-single-scroll');
$stretch_width=jQuery('.trx-stretch-width');
}
update_jquery_links();
wd_intersection_observer_init();
wd_init_actions();
function wd_init_actions(){
if(WD_STORAGE['vc_edit_mode']&&jQuery('.vc_empty-placeholder').length===0&&theme_init_counter++ < 30){
setTimeout(wd_init_actions, 200);
return;
}
$window.on('resize', function(){
wd_resize_actions();
});
WD_STORAGE['scroll_busy']=true;
$window.on('scroll', function(){
if(window.requestAnimationFrame){
if(! WD_STORAGE['scroll_busy']){
window.requestAnimationFrame(function(){
wd_scroll_actions();
});
WD_STORAGE['scroll_busy']=true;
}}else{
wd_scroll_actions();
}});
document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
if(document.documentElement.className.indexOf(WD_STORAGE['site_scheme'])==-1){
document.documentElement.className +=' ' + WD_STORAGE['site_scheme'];
}
wd_ready_actions();
wd_resize_actions();
wd_scroll_actions();
}
function wd_ready_actions(){
$body
.on('focus', 'a.wd_skip_link', function(){
if(! $body.hasClass('show_outline')){
$body.addClass('show_outline');
}})
.on('click', 'a.wd_skip_link', function(){
var id=jQuery(this).attr('href');
jQuery(id).focus();
});
$body.on('keydown', 'a,input,textarea,select,span[tabindex]', function(e){
if(9==e.which){
if(! $body.hasClass('show_outline')){
$body.addClass('show_outline');
}}
});
$document
.on('keyup', function(e){
if(e.keyCode==27){
if(jQuery('.menu_mobile.opened').length==1){
wd_mobile_menu_close();
e.preventDefault();
return false;
}}
})
.on('action.trx_addons_inner_links_click', function(e, link_obj, original_e){
if($body.hasClass('menu_mobile_opened')){
$body.removeClass('menu_mobile_opened');
wd_mobile_menu_close();
}});
$document.on('action.scroll_wd', function(e){
wd_infinite_scroll_in_blog();
});
$document.on('action.scroll_wd', function(e){
wd_infinite_scroll_in_single();
});
if($body.hasClass('single')){
wd_add_to_read_list(jQuery('.content > article[data-post-id]').data('post-id'));
}
$document.on('action.init_hidden_elements', function(e, cont){
var read_list=wd_get_storage('wd_post_read');
if(read_list&&read_list.charAt(0)=='['){
read_list=JSON.parse(read_list);
for (var p=0; p<read_list.length; p++){
var read_post=cont.find('[data-post-id="'+read_list[p]+'"]');
if(!read_post.addClass('full_post_read')&&!read_post.parent().hasClass('content')){
read_post.addClass('full_post_read');
}}
}});
if(location.hash=='#comments'||location.hash=='#respond'){
var $show_comments_button=jQuery('.show_comments_button');
if($show_comments_button.length==1&&! $show_comments_button.hasClass('opened')){
$show_comments_button.trigger('click');
wd_document_animate_to(location.hash);
}}
$document.trigger('action.ready_wd');
$document.trigger('action.prepare_stretch_width');
$stretch_width=jQuery('.trx-stretch-width');
$stretch_width.wrap('<div class="trx-stretch-width-wrap"></div>');
$stretch_width.after('<div class="trx-stretch-width-original"></div>');
wd_stretch_width();
$document.on('action.init_hidden_elements', wd_init_post_formats);
$document.on('action.init_hidden_elements', wd_add_toc_to_sidemenu);
$document.trigger('action.init_hidden_elements', [$body.eq(0)]);
}
function wd_init_post_formats(e, cont){
wd_init_menus(cont);
wd_add_select_container(cont);
wd_init_bg_video(cont);
wd_init_tabs(cont);
wd_init_accordion(cont);
wd_init_sidebar_control(cont);
wd_init_masonry(cont);
wd_init_load_more(cont);
wd_init_load_single_post(cont);
wd_init_media_elements(cont);
wd_init_video_play_button(cont);
wd_init_comments_button(cont);
wd_init_comments_links(cont);
wd_init_checkbox_i_agree(cont);
}
function wd_add_select_container(cont){
var selector=wd_apply_filters(
'wd_filter_select_container_selector',
'select:not(.esg-sorting-select):not([class*="trx_addons_attrib_"]):not([size])'
);
if(selector){
cont.find(selector).each(function(){
var $self=jQuery(this);
if($self.css('display')!='none'
&& $self.parents('.select_container').length===0
&& ! $self.next().hasClass('select2')
&& ! $self.hasClass('select2-hidden-accessible')
&& ! $self.hasClass('components-select-control__input')
){
$self.wrap('<div class="select_container"></div>');
if($self.parents(wd_apply_filters('wd_filter_bubble_submit_form', '.widget_categories')).length > 0){
$self.parent().get(0).submit=function(){
jQuery(this).closest('form').eq(0).submit();
};}}
});
}}
$document.on('ajaxComplete', function(e){
setTimeout(function(){
wd_add_select_container($body);
}, 100);
});
function wd_init_bg_video(cont){
var $top_panel_with_bg_video=cont.find('.top_panel.with_bg_video:not(.inited)').addClass('inited');
if(WD_STORAGE['background_video']&&$top_panel_with_bg_video.length > 0&&window.Bideo){
setTimeout(
function(){
$top_panel_with_bg_video.prepend('<video id="background_video" loop muted></video>');
var bv=new Bideo();
bv.init({
videoEl: document.querySelector('#background_video'),
container: document.querySelector('.top_panel'),
resize: true,
isMobile: window.matchMedia('(max-width: 768px)').matches,
playButton: document.querySelector('#background_video_play'),
pauseButton: document.querySelector('#background_video_pause'),
src: [
{
src: WD_STORAGE['background_video'],
type: 'video/' + wd_get_file_ext(WD_STORAGE['background_video'])
}
],
onLoad: function (){
}}
);
}, 10
);
}else if(jQuery.fn.tubular){
cont.find('#background_video:not(.inited)').each(function(){
var $self=jQuery(this).addClass('inited');
var youtube_code=$self.data('youtube-code');
if(youtube_code){
$self.tubular({ videoId: youtube_code });
jQuery('#tubular-player').appendTo($self).show();
jQuery('#tubular-container,#tubular-shield').remove();
}});
}}
WD_STORAGE['mejs_attempts']=0;
function wd_init_media_elements(cont){
var audio_selector=wd_apply_filters('wd_filter_mediaelements_audio_selector', 'audio:not(.inited)'),
video_selector=wd_apply_filters('wd_filter_mediaelements_video_selector', 'video:not(.inited):not([nocontrols]):not([controls="0"]):not([controls="false"]):not([controls="no"])'),
media_selector=audio_selector +(audio_selector&&video_selector ? ',':'') + video_selector;
if(WD_STORAGE['use_mediaelements']&&cont.find(media_selector).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('video.wp-video-shortcode[autoplay],'
+ 'video.wp-video-shortcode[nocontrols],'
+ 'video.wp-video-shortcode[controls="0"],'
+ 'video.wp-video-shortcode[controls="false"],'
+ 'video.wp-video-shortcode[controls="no"],'
+ '.wp-block-video > video[autoplay],'
+ '.wp-block-video > video[nocontrols],'
+ '.wp-block-video > video[controls="0"],'
+ '.wp-block-video > video[controls="false"],'
+ '.wp-block-video > video[controls="no"]'
)
.removeClass('wp-video-shortcode');
cont.find(media_selector).each(function(){
var $self=jQuery(this);
if($self.parents('div:hidden,section:hidden,article:hidden').length > 0){
return;
}
if($self.addClass('inited').parents('.mejs-mediaelement').length===0
&& $self.parents('.wp-block-video').length===0
&& ! $self.hasClass('wp-block-cover__video-background')
&& $self.parents('.elementor-background-video-container').length===0
&& $self.parents('.elementor-widget-video').length===0
&& $self.parents('.sc_layouts_title').length===0
&&(WD_STORAGE['init_all_mediaelements']
||(! $self.hasClass('wp-audio-shortcode')
&& ! $self.hasClass('wp-video-shortcode')
&& ! $self.parent().hasClass('wp-playlist')
)
)
){
var media_cont=$self.parents('.post_video,.video_frame').eq(0);
if(media_cont.length===0){
media_cont=$self.parent();
}
var cont_w=media_cont.length > 0 ? media_cont.width():-1,
cont_h=media_cont.length > 0 ? Math.floor(cont_w / 16 * 9):-1,
settings={
enableAutosize: true,
videoWidth:     cont_w,
videoHeight:    cont_h,
audioWidth:     '100%',
audioHeight:    40,
success: function(mejs){
if(mejs.pluginType&&'flash'===mejs.pluginType&&mejs.attributes){
mejs.attributes.autoplay
&& 'false'!==mejs.attributes.autoplay
&& mejs.addEventListener('canplay', function (){ mejs.play(); }, false);
mejs.attributes.loop
&& 'false'!==mejs.attributes.loop
&& mejs.addEventListener('ended', function (){ mejs.play(); }, false);
}}
};
$self.mediaelementplayer(settings);
}}
);
}else if(WD_STORAGE['mejs_attempts']++ < 5){
setTimeout(function(){ wd_init_media_elements(cont); }, 400);
}}
setTimeout(function(){ WD_STORAGE['init_all_mediaelements']=true; }, 1000);
}
function wd_init_video_play_button(cont){
cont.find('.post_featured.with_thumb .post_video_hover:not(.post_video_hover_popup):not(.inited)')
.addClass('inited')
.on('click', function(e){
var $self=jQuery(this),
$post_featured=$self.parents('.post_featured').eq(0);
$post_featured
.addClass('post_video_play')
.find('.post_video').html($self.data('video'));
$document.trigger('action.init_hidden_elements', [ $post_featured ]);
$window.trigger('resize');
e.preventDefault();
return false;
})
.parents('.post_featured')
.on('click', function(e){
var $self=jQuery(this);
if(! $self.hasClass('post_video_play')&&! jQuery(e.target).is('a')){
jQuery(this).find('.post_video_hover').trigger('click');
e.preventDefault();
return false;
}});
}
function wd_init_accordion(cont){
if(jQuery.ui&&jQuery.ui.accordion){
cont.find('.wd_accordion:not(.inited)').each(function (){
var $self=jQuery(this);
var headers=$self.data('headers')||'.wd_accordion_title';
var height_style=$self.data('height-style')||'content';
var collapsible=$self.data('collapsible')||false;
var init=$self.data('active');
var active=false;
if(isNaN(init)){
init=0;
active=$self.find(headers + '[data-active="true"]').eq(0);
if(active.length > 0){
while(! active.parent().hasClass('wd_accordion')){
active=active.parent();
}
init=active.index();
if(isNaN(init)||init < 0) init=0;
}}else{
init=Math.max(0, init);
}
$self.addClass('inited').accordion({
'active': init,
'collapsible': collapsible,
'header': headers,
'heightStyle': height_style,
'create': function(event, ui){
if(ui.panel.length > 0&&! ready_busy){
$document.trigger('action.create_accordion', [ui.panel]);
$document.trigger('action.init_hidden_elements', [ui.panel]);
}else if(active!==false&&active.length > 0){
active.find('>' + headers).trigger('click');
}},
'activate': function(event, ui){
if(ui.oldPanel.length > 0&&! ready_busy){
$document.trigger('action.deactivate_accordion', [ui.oldPanel]);
}
if(ui.newPanel.length > 0&&! ready_busy){
$document.trigger('action.activate_accordion', [ui.newPanel]);
$document.trigger('action.init_hidden_elements', [ui.newPanel]);
$window.trigger('resize');
}}
});
});
}}
function wd_init_tabs(cont){
if(jQuery.ui&&jQuery.ui.tabs){
cont.find('.wd_tabs:not(.inited)').each(function (){
var $self=jQuery(this);
var init=$self.data('active');
if(isNaN(init)){
init=0;
var active=$self.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);
}
$self.addClass('inited').tabs({
active: init,
show: {
effect: 'fadeIn',
duration: 300
},
hide: {
effect: 'fadeOut',
duration: 300
},
create: function(event, ui){
if(ui.panel.length > 0&&! ready_busy){
$document.trigger('action.create_tab', [ui.panel]);
$document.trigger('action.init_hidden_elements', [ui.panel]);
}},
activate: function(event, ui){
if(ui.oldPanel.length > 0&&! ready_busy){
$document.trigger('action.deactivate_tab', [ui.oldPanel]);
}
if(ui.newPanel.length > 0&&! ready_busy){
$document.trigger('action.activate_tab', [ui.newPanel]);
$document.trigger('action.init_hidden_elements', [ui.newPanel]);
$window.trigger('resize');
}}
});
if($self.hasClass('wd_tabs_ajax')){
$self.on('tabsbeforeactivate', function(event, ui){
if(ui.newPanel.data('need-content')){
wd_tabs_ajax_content_loader(ui.newPanel, 1, ui.oldPanel);
}});
$self.on('click', '.nav-links a', function(e){
var $self=jQuery(this);
var panel=$self.parents('.wd_tabs_content');
var page=1;
var href=$self.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);
}}
wd_tabs_ajax_content_loader(panel, page);
e.preventDefault();
return false;
});
}});
}}
function wd_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="wd_tab_holder" style="min-height:' + height + 'px;"></div>');
}else{
panel.find('> *').addClass('wd_tab_content_remove');
}
panel.data('need-content', false).addClass('wd_loading');
jQuery.post(WD_STORAGE['ajax_url'], {
nonce: WD_STORAGE['ajax_nonce'],
action: 'wd_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('wd_loading');
var rez={};
try {
rez=JSON.parse(response);
} catch (e){
rez={ error: WD_STORAGE['msg_ajax_error'] };
console.log(response);
}
if(rez.error!==''){
panel.html('<div class="wd_error">' + rez.error + '</div>');
}else{
if(rez.css!==''){
wd_import_inline_styles('<style id="wd-inline-styles-inline-css">' + rez.css + '</style>');
}
panel
.find('.wd_tab_holder,.wd_tab_content_remove').remove().end()
.prepend(rez.data).fadeIn(function(){
wd_document_animate_to('#content_skip_link_anchor');
$document.trigger('action.init_hidden_elements', [panel]);
$window.trigger('scroll');
}
);
$document.trigger('action.after_add_content', [panel]);
}
$document.trigger('action.got_ajax_response', {
action: 'wd_ajax_get_posts',
result: rez,
panel: panel
});
});
}
function wd_init_load_more(cont){
cont.find('.nav-load-more:not(.inited)')
.addClass('inited')
.on('click', function(e){
var more=jQuery(this);
if(more.data('load_more_link_busy')){
return false;
}
var page=Number(more.data('page'));
var max_page=Number(more.data('max-page'));
if(page >=max_page){
more.parent().addClass('all_items_loaded').hide();
return false;
}
more.data('load_more_link_busy', true)
.parent().addClass('loading');
var panel=more.parents('.wd_tabs_content');
if(panel.length===0){
jQuery.get(location.href, {
paged: page + 1
}
).done(function(response){
wd_import_inline_styles(response);
wd_import_tags_link(response);
var $response=jQuery(response);
var $response_posts_container=$response.find('.content .posts_container');
if($response_posts_container.length===0){
$response_posts_container=$response.find('.posts_container');
}
if($response_posts_container.length > 0){
wd_loadmore_add_items(
$content.find('.posts_container').eq(0),
$response_posts_container.find('> .masonry_item,'
+ '> div[class*="column-"],'
+ '> article'
)
);
}
$document.trigger('action.got_ajax_response', {
action: 'load_more_next_page',
result: response
});
}
);
}else{
jQuery.post(WD_STORAGE['ajax_url'], {
nonce: WD_STORAGE['ajax_nonce'],
action: 'wd_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: WD_STORAGE['msg_ajax_error'] };
console.log(response);
}
if(rez.error!==''){
panel.html('<div class="wd_error">' + rez.error + '</div>');
}else{
if(rez.css!==''){
wd_import_inline_styles('<style id="wd-inline-styles-inline-css">' + rez.css + '</style>');
}
wd_loadmore_add_items(
panel.find('.posts_container'),
jQuery(rez.data).find('> .masonry_item,'
+ '> div[class*="column-"],'
+ '> article'
)
);
}
$document.trigger('action.got_ajax_response', {
action: 'wd_ajax_get_posts',
result: rez,
panel: panel
});
}
);
}
function wd_loadmore_add_items(container, items){
if(container.length > 0&&items.length > 0){
items.addClass('just_loaded_items');
container.append(items);
$document.trigger('action.after_add_content', [container]);
var just_loaded_items=container.find('.just_loaded_items');
if(container.hasClass('masonry_wrap')){
just_loaded_items.addClass('hidden');
wd_when_images_loaded(
just_loaded_items, function(){
just_loaded_items.removeClass('hidden');
container.masonry('appended', items).masonry();
jQuery('#toc_menu').remove();
WD_STORAGE['init_all_mediaelements']=true;
$document.trigger('action.init_hidden_elements', [container.parent()]);
}
);
}else{
just_loaded_items.removeClass('just_loaded_items hidden');
jQuery('#toc_menu').remove();
WD_STORAGE['init_all_mediaelements']=true;
$document.trigger('action.init_hidden_elements', [container.parent()]);
}
more.data('page', page + 1).parent().removeClass('loading');
}
if(page + 1 >=max_page){
more.parent().addClass('all_items_loaded').hide();
}
more.data('load_more_link_busy', false);
$window.trigger('resize');
$window.trigger('scroll');
}
e.preventDefault();
return false;
}
);
}
function wd_init_load_single_post(cont){
cont.find('.posts_container:not(.inited_open_full_post),.sc_blogger_content.sc_item_posts_container:not(.inited_open_full_post)')
.addClass('inited_open_full_post')
.on('click', 'a', function(e){
var link=jQuery(this),
link_url=link.attr('href'),
post=link.parents('.post_item,.sc_blogger_item').eq(0),
post_url=post.find('.post_title > a,.entry-title > a').attr('href'),
posts_container=post.parents('.posts_container,.sc_item_posts_container').eq(0);
if(link_url&&post_url&&link_url==post_url
&&(posts_container.hasClass('open_full_post')||WD_STORAGE['open_full_post'])
&& ! posts_container.hasClass('no_open_full_post')
&& ! posts_container.hasClass('columns_wrap')
&& ! posts_container.hasClass('masonry_wrap')
&& posts_container.find('.sc_blogger_grid_wrap').length===0
&& posts_container.find('.masonry_wrap').length===0
&& posts_container.parents('.wp-block-columns').length===0
&&(posts_container.parents('.wpb_column').length===0||posts_container.parents('.wpb_column').eq(0).hasClass('vc_col-sm-12'))
&&(posts_container.parents('.elementor-column').length===0||posts_container.parents('.elementor-column').eq(0).hasClass('elementor-col-100'))
){
posts_container.find('.full_post_opened').removeClass('full_post_opened').show();
posts_container.find('.full_post_content').remove();
post.addClass('full_post_loading');
jQuery.get(wd_add_to_url(post_url, { 'action': 'full_post_loading' })).done(function(response){
if(response){
var $response=jQuery(response);
var post_content=$response.find('.content');
if(post_content.length > 0){
var inline_styles=response.match(/<style[^>]*id="trx_addons-inline-styles-inline-css"[^>]*>([^<]*)<\/style>/);
if(inline_styles){
jQuery('#trx_addons-inline-styles-inline-css').append(inline_styles[1]);
}
wd_import_tags_link(response);
var cs=post.offset().top -(post.parents('.posts_container').length > 0 ? 100:200);
wd_document_animate_to(cs);
post.after('<div class="full_post_content">'
+ '<button class="full_post_close" data-post-url="' + post_url + '"></button>'
+ post_content.html()
+ '</div>'
)
.removeClass('full_post_loading')
.addClass('full_post_opened')
.hide()
.next().slideDown('slow', function(){
WD_STORAGE['init_all_mediaelements']=true;
$document.trigger('action.init_hidden_elements', [posts_container]);
$window.trigger('resize');
});
wd_full_post_read_change_state();
post.next().find('.full_post_close')
.on('click', function(e){
var content=jQuery(this).parent(),
cs=content.offset().top - (content.parents('.posts_container').length > 0 ? 100:200),
post=content.prev();
content.remove();
wd_full_post_read_change_state();
post
.removeClass('full_post_opened')
.slideDown();
wd_document_animate_to(cs, 0);
e.preventDefault();
return false;
});
jQuery('#toc_menu').remove();
}
$document.trigger('action.got_ajax_response', {
action: 'full_post_loading',
result: response
});
}});
e.preventDefault();
return false;
}});
}
function wd_infinite_scroll_in_blog(){
if(! $nav_link_infinite||$nav_link_infinite.length===0||$nav_link_infinite.hasClass('all_items_loaded')){
return;
}
var container=$content.find('> .posts_container,> .blog_archive > .posts_container,> .wd_tabs > .wd_tabs_content:visible > .posts_container').eq(0);
if(container.length==1&&container.offset().top + container.height() < wd_window_scroll_top() + wd_window_height() * 1.5){
$nav_link_infinite.find('a').trigger('click');
}}
function wd_infinite_scroll_in_single(){
if($single_post_scrollers.length===0){
return;
}
var container=WD_STORAGE['which_block_load']=='article'
? $content.eq(0)
: $page_content_wrap.eq(0),
cur_page_link=location.href,
cur_page_title=$cur_page_title_tag.length ? $cur_page_title_tag.length:'';
$single_post_scrollers.each(function(){
var inf=jQuery(this),
link=inf.data('post-link'),
off=inf.offset().top,
st=wd_window_scroll_top(),
wh=wd_window_height();
if(inf.hasClass('nav-links-single-scroll-loaded')){
if(link&&off < st + wh / 2){
cur_page_link=link;
cur_page_title=inf.data('post-title');
}}else if(! inf.hasClass('wd_loading')&&link&&off < st + wh * 2){
wd_add_to_read_list(container.find('.previous_post_content:last-child > article[data-post-id]').data('post-id'));
inf.addClass('wd_loading');
jQuery.get(wd_add_to_url(link, { 'action': 'prev_post_loading' })).done(function(response){
wd_import_inline_styles(response);
wd_import_tags_link(response);
var $response=jQuery(response),
$response_page_content_wrap=$response.find('.page_content_wrap'),
$response_content=$response.find('.content'),
$response_sidebar=$response.find('.sidebar'),
$response_post_content=WD_STORAGE['which_block_load']=='article'
? $response_content
: $response_page_content_wrap;
if($response_post_content.length > 0){
var html=$response_post_content.html(),
response_body_classes=WD_STORAGE['which_block_load']=='article'
? null
: response.match(/<body[^>]*class="([^"]*)"/);
if(WD_STORAGE['which_block_load']=='wrapper'){
if($response_sidebar.length===0
&& ! response_body_classes
&& ! $body.hasClass('expand_content')
&& ! $body.hasClass('narrow_content')
){
$response_post_content.find('.content').width('100%');
html=$response_post_content.html();
}else if($response_sidebar.length > 0&&$body.hasClass('narrow_content')){
$response_post_content.find('.post_item_single.post_type_post').width('100%');
html=$response_post_content.html();
}}
container.append('<div class="previous_post_content'
+(response_body_classes
? ' ' + response_body_classes[1]
: '')
+($response_page_content_wrap.attr('data-single-style')!==undefined
? ' single_style_' + $response_page_content_wrap.attr('data-single-style')
: ''
)
+ '">'
+ html
+ '</div>'
);
inf.removeClass('wd_loading').addClass('nav-links-single-scroll-loaded');
jQuery('#toc_menu').remove();
WD_STORAGE['init_all_mediaelements']=true;
$document
.trigger('action.new_post_added', [container])
.trigger('action.init_hidden_elements', [container]);
$window.trigger('resize');
}
$document.trigger('action.got_ajax_response', {
action: 'prev_post_loading',
result: response
});
}
);
}});
if(cur_page_link!=location.href){
wd_document_set_location(cur_page_link);
jQuery('.sc_layouts_title_caption,head title').html(cur_page_title);
}}
function wd_init_menus(cont){
if($body.hasClass('menu_side_present')&&$menu_side_logo.length&&! $menu_side_logo.hasClass('inited_stretch')){
$menu_side_logo.addClass('inited_stretch');
if(! wd_is_images_loaded($menu_side_logo)){
wd_when_images_loaded($menu_side_logo, function(){
wd_stretch_sidemenu();
});
}}
var $menus=cont.find('.sc_layouts_menu:not(.inited_kbd)').addClass('inited_kbd');
$menus
.on('keydown', 'li > a', function(e){
var handled=false,
link=jQuery(this),
li=link.parent(),
ul=li.parent(),
li_parent=ul.parent().prop('tagName')=='LI' ? ul.parent():false,
item=false;
if(32==e.which){
link.trigger('click');
handled=true;
}else if(27==e.which){
if(li_parent){
item=li_parent.find('> a');
if(item.length > 0){
item.get(0).focus();
}}
handled=true;
}else if(37==e.which){
if(li_parent){
item=li_parent.find('> a');
if(item.length > 0){
item.get(0).focus();
}}else if(li.index() > 0){
item=li.prev().find('> a');
if(item.length > 0){
item.eq(0).focus();
}}
handled=true;
}else if(38==e.which){
if(li.index() > 0){
item=li.prev().find('> a');
if(item.length > 0){
item.get(0).focus();
}}else if(li_parent){
item=li_parent.find('> a');
if(item.length > 0){
item.get(0).focus();
}}
handled=true;
}else if(39==e.which){
if(li_parent){
if(li.find('> ul').length==1){
item=li.find('> ul > li:first-child a');
if(item.length > 0){
item.get(0).focus();
}}
}else if(li.next().prop('tagName')=='LI'){
item=li.next().find('> a');
if(item.length > 0){
item.get(0).focus();
}}
handled=true;
}else if(40==e.which){
if(li_parent||li.find('> ul').length===0){
if(li.next().prop('tagName')=='LI'){
item=li.next().find('> a');
if(item.length > 0){
item.get(0).focus();
}}
}else if(li.find('> ul').length==1){
item=li.find('> ul > li:first-child a');
if(item.length > 0){
item.get(0).focus();
}}
handled=true;
}
if(handled){
if(! $body.hasClass('show_outline')){
$body.addClass('show_outline');
}
e.preventDefault();
return false;
}
return true;
});
$menus.find('li[class*="image-"]').each(function(){
var $self=jQuery(this);
var classes=$self.attr('class').split(' ');
var icon='';
for (var i=0; i < classes.length; i++){
if(classes[i].indexOf('image-') >=0){
icon=classes[i].replace('image-', '');
break;
}}
if(icon){
$self.find('>a').css('background-image', 'url(' + WD_STORAGE['theme_url'] + 'trx_addons/css/icons.png/' + icon + '.png');
}}
);
cont.find('.menu_side_button:not(.inited)')
.addClass('inited')
.on('click', function(e){
jQuery(this).parent().toggleClass('opened');
e.preventDefault();
return false;
});
cont.find('.menu_mobile:not(.inited_arrows),.sc_layouts_menu_dir_vertical:not(.inited_arrows)')
.addClass('inited_arrows')
.find('.menu-item-has-children > a')
.append('<span class="open_child_menu"></span>');
function wd_mobile_menu_open(){
var $menu=cont.find('.menu_mobile');
$menu
.addClass('opened')
.prev('.menu_mobile_overlay').fadeIn();
$body.addClass('menu_mobile_opened');
$document
.trigger('action.stop_wheel_handlers')
.trigger('action.mobile_menu_open', [$menu]);
}
function wd_mobile_menu_close(){
var $menu=cont.find('.menu_mobile');
$document.trigger('action.mobile_menu_close', [$menu]);
setTimeout(function(){
$menu
.removeClass('opened')
.prev('.menu_mobile_overlay').fadeOut();
$body.removeClass('menu_mobile_opened');
$document.trigger('action.start_wheel_handlers');
}, wd_apply_filters('wd_filter_mobile_menu_close_timeout', 0, $menu));
}
cont.find('.sc_layouts_menu_mobile_button > a:not(.inited_click),.menu_mobile_button:not(.inited_click),.menu_mobile_description:not(.inited_click)')
.addClass('inited_click')
.on('click', function(e){
var $self=jQuery(this);
if($self.parent().hasClass('sc_layouts_menu_mobile_button_burger')
&& $self.next().hasClass('sc_layouts_menu_popup')
){
return;
}
wd_mobile_menu_open();
e.preventDefault();
return false;
}
);
cont.find('.menu_mobile_overlay:not(.inited_click)')
.addClass('inited_click')
.on('click', function(e){
wd_mobile_menu_close();
e.preventDefault();
return false;
});
cont.find('.menu_mobile_close:not(.inited_click)')
.addClass('inited_click')
.on('click', function(e){
wd_mobile_menu_close();
e.preventDefault();
return false;
})
.on('keyup', function(e){
if(e.keyCode==13){
if(jQuery('.menu_mobile.opened').length==1){
wd_mobile_menu_close();
e.preventDefault();
return false;
}}
})
.on('focus', function(){
if(! $body.hasClass('menu_mobile_opened')){
jQuery('#content_skip_link_anchor').focus();
}});
cont.find('.menu_mobile:not(.inited_click),.sc_layouts_menu_dir_vertical:not([class*="sc_layouts_submenu_"]):not(.inited_click),.sc_layouts_menu.sc_layouts_submenu_dropdown:not(.inited_click)')
.addClass('inited_click')
.on('click', 'li a, li a .open_child_menu', function(e){
var $self=jQuery(this);
var $a=$self.hasClass('open_child_menu') ? $self.parent():$self;
if($a.parent().hasClass('menu-item-has-children')){
if($a.attr('href')=='#'||$self.hasClass('open_child_menu')){
if($a.siblings('ul:visible').length > 0){
$a.siblings('ul').slideUp().parent().removeClass('opened');
}else{
$self.parents('li').eq(0).siblings('li').find('ul.sub-menu:visible,ul.sc_layouts_submenu:visible').slideUp().parent().removeClass('opened');
$a.siblings('ul').slideDown(function(){
var $self=jQuery(this);
if(! $self.hasClass('layouts_inited')&&$self.parents('.menu_mobile').length > 0){
$self.addClass('layouts_inited');
$document.trigger('action.init_hidden_elements', [$self]);
}}
).parent().addClass('opened');
}}
}
if(! $self.hasClass('open_child_menu')&&$self.parents('.menu_mobile').length > 0&&wd_is_local_link($a.attr('href'))){
jQuery('.menu_mobile_close').trigger('click');
}
if($self.hasClass('open_child_menu')||$a.attr('href')=='#'){
e.preventDefault();
return false;
}})
.on('keyup', 'li a', function(e){
if(e.keyCode==9){
jQuery(this).find('.open_child_menu').trigger('click');
}});
if(! WD_STORAGE['trx_addons_exist']||jQuery('.top_panel.top_panel_default .sc_layouts_menu_default').length > 0){
wd_init_sfmenu('.sc_layouts_menu:not(.inited):not(.sc_layouts_submenu_dropdown) > ul:not(.inited)');
jQuery('.sc_layouts_menu:not(.inited)').each(function(){
var $self=jQuery(this);
if($self.find('>ul.inited').length==1){
$self.addClass('inited');
}}
);
$window.trigger('scroll');
}}
function wd_init_sfmenu(selector){
jQuery(selector).show().each(function(){
var $self=jQuery(this);
if($self.addClass('inited').parents('.menu_mobile').length > 0){
return;
}
var animation_in=$self.parent().data('animation_in');
if(animation_in==undefined){
animation_in="none";
}
var animation_out=$self.parent().data('animation_out');
if(animation_out==undefined){
animation_out="none";
}
$self.superfish({
delay: 300,
animation: {
opacity: 'show'
},
animationOut: {
opacity: 'hide'
},
speed: 		animation_in!='none' ? 500:200,
speedOut:	animation_out!='none' ? 300:200,
autoArrows: false,
dropShadows: false,
onBeforeShow: function(ul){
var $self=jQuery(this),
$ul=$self.parents("ul");
var par_offset=0,
par_width=0,
ul_width=0,
ul_height=0;
if($ul.length > 1){
var w=$page_wrap.width();
par_offset=$ul.eq(0).offset().left;
par_width=$ul.eq(0).outerWidth();
ul_width=$self.outerWidth();
if(par_offset + par_width + ul_width > w - 20&&par_offset - ul_width > 0){
$self.addClass('submenu_left');
}else{
$self.removeClass('submenu_left');
}}
if($self.parents('.top_panel').length > 0){
ul_height=$self.outerHeight();
par_offset=0;
var w_height=wd_window_height(),
row=$self.parents('.sc_layouts_row').eq(0),
row_offset=0,
row_height=0,
par=$self.parent();
while (row.length > 0){
row_offset +=row.outerHeight();
if(row.hasClass('sc_layouts_row_fixed_on')){
break;
}
row=row.prev();
}
while (par.length > 0){
par_offset +=par.position().top + par.parent().position().top;
row_height=par.outerHeight();
if(par.position().top===0){
break;
}
par=par.parents('li').eq(0);
}
if(row_offset + par_offset + ul_height > w_height){
if(par_offset > ul_height){
$self.css({
'top': 'auto',
'bottom': '-1.4em'
});
}else{
$self.css({
'top': '-' + (par_offset - row_height - 2) + 'px',
'bottom': 'auto'
});
}}
}
if(animation_in!='none'){
$self.removeClass('animated faster ' + animation_out);
$self.addClass('animated fast ' + animation_in);
}},
onBeforeHide: function(ul){
if(animation_out!='none'){
var $self=jQuery(this);
$self.removeClass('animated fast ' + animation_in);
$self.addClass('animated faster ' + animation_out);
}},
onShow: function(ul){
var $self=jQuery(this);
if(! $self.hasClass('layouts_inited')){
$self.addClass('layouts_inited');
$document.trigger('action.init_hidden_elements', [$self]);
}}
}
);
}
);
}
function wd_add_toc_to_sidemenu(){
if(jQuery('.menu_side_inner').length > 0&&jQuery('#toc_menu').length > 0){
jQuery('#toc_menu').appendTo('.menu_side_inner');
wd_stretch_sidemenu();
}}
function wd_init_sidebar_control(cont){
cont.find('.sidebar_control:not(.inited)')
.addClass('inited')
.on('click', function(e){
var $self=jQuery(this),
$parent=$self.parent();
$parent.toggleClass('opened');
if($body.hasClass('sidebar_small_screen_above')){
var $next=$self.next();
$next.slideToggle();
if($parent.hasClass('opened')){
setTimeout(function(){
$document.trigger('action.init_hidden_elements', [$next]);
}, 310);
}}
e.preventDefault();
return false;
});
}
function wd_init_masonry(cont){
cont.find(wd_apply_filters('wd_filter_masonry_wrap', '.masonry_wrap')).each(function(){
var masonry_wrap=jQuery(this);
if(masonry_wrap.parents('div:hidden,article:hidden').length > 0) return;
if(! masonry_wrap.hasClass('inited')){
masonry_wrap.addClass('inited');
wd_when_images_loaded(masonry_wrap, function(){
setTimeout(function(){
masonry_wrap.masonry({
itemSelector: wd_apply_filters('wd_filter_masonry_item', '.masonry_item'),
columnWidth: wd_apply_filters('wd_filter_masonry_item', '.masonry_item'),
percentPosition: true
});
$window.trigger('resize');
$window.trigger('scroll');
}, wd_apply_filters('wd_filter_masonry_init', 10));
});
}else{
setTimeout(function(){
masonry_wrap.masonry();
}, wd_apply_filters('wd_filter_masonry_reinit', 510));
}});
}
function wd_init_comments_button(cont){
cont.find('.show_comments_button:not(.inited)')
.addClass('inited')
.on('click', function(e){
var bt=jQuery(this);
if(bt.attr('href')=='#'){
bt.toggleClass('opened').text(bt.data(bt.hasClass('opened') ? 'hide':'show'));
var $comments_wrap=bt.parent().next();
$comments_wrap.slideToggle(function(){
$comments_wrap.toggleClass('opened');
$window.trigger('scroll');
});
e.preventDefault();
return false;
}});
}
function wd_init_comments_links(cont){
cont.find('a[href$="#comments"]:not(.inited),a[href$="#respond"]:not(.inited)')
.addClass('inited')
.on('click', function(e){
var $self=jQuery(this);
if(wd_is_local_link($self.attr('href'))){
var $prev_post_content=$self.parents('.previous_post_content'),
$comments_wrap=$prev_post_content.length
? $prev_post_content.find('.comments_wrap').eq(0)
: jQuery('.comments_wrap').eq(0),
$show_comments_button=$comments_wrap.prev().find('.show_comments_button ');
if($comments_wrap.length){
if($comments_wrap.css('display')=='none'){
if($show_comments_button.length){
$show_comments_button.trigger('click');
}}
if($show_comments_button.length){
wd_document_animate_to($show_comments_button.offset().top);
}}
}});
}
function wd_init_checkbox_i_agree(cont){
var $i_agree=cont.find('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)'
+ ',input[type="checkbox"][name="AGREE_TO_TERMS"]:not(.inited)'
+ ',input[type="checkbox"][name="acceptance"]:not(.inited)'
);
if($i_agree.length > 0){
if(true){
$i_agree.each(function(){
var chk=jQuery(this),
form=chk.parents('form');
chk.addClass('inited');
form.find('button,input[type="submit"]').on('click', function(e){
if(! chk.get(0).checked){
form.find('.trx_addons_message_box').remove();
form.append('<div class="trx_addons_message_box trx_addons_message_box_error">'
+ WD_STORAGE['msg_i_agree_error']
+ '</div>'
);
var error_msg=form.find('.trx_addons_message_box');
error_msg.fadeIn();
setTimeout(function(){
error_msg.fadeOut(function(){
error_msg.remove();
});
}, 3000);
e.preventDefault();
return false;
}});
});
}else{
$i_agree
.addClass('inited')
.on('change', function(e){
var $self=jQuery(this),
$bt=$self.parents('form').find('button,input[type="submit"]');
if($self.get(0).checked){
$bt.removeAttr('disabled');
}else{
$bt.attr('disabled', 'disabled');
}})
.trigger('change');
}}
}
function wd_intersection_observer_init(){
if(typeof IntersectionObserver!='undefined'){
if(typeof WD_STORAGE['intersection_observer']=='undefined'){
WD_STORAGE['intersection_observer']=new IntersectionObserver(function(entries){
entries.forEach(function(entry){
wd_intersection_observer_in_out(jQuery(entry.target), entry.isIntersecting||entry.intersectionRatio > 0 ? 'in':'out', entry);
});
},
{
root: null,
rootMargin: '1px',
threshold: 0	
}
);
}}else{
$window.on('scroll', function(){
if(typeof WD_STORAGE['intersection_observer_items']!='undefined'){
for(var i in WD_STORAGE['intersection_observer_items']){
if(! WD_STORAGE['intersection_observer_items'][i]||WD_STORAGE['intersection_observer_items'][i].length===0){
continue;
}
var item=WD_STORAGE['intersection_observer_items'][i],
item_top=item.offset().top,
item_height=item.height();
wd_intersection_observer_in_out(item, item_top + item_height > wd_window_scroll_top()&&item_top < wd_window_scroll_top() + wd_window_height() ? 'in':'out');
}}
});
}
window.wd_intersection_observer_in_out=function(item, state, entry){
var callback=null;
if(state=='in'){
if(! item.hasClass('wd_in_viewport')){
item.addClass('wd_in_viewport');
callback=item.data('trx-addons-intersection-callback');
if(callback){
callback(item, true, entry);
}}
}else{
if(item.hasClass('wd_in_viewport')){
item.removeClass('wd_in_viewport');
callback=item.data('trx-addons-intersection-callback');
if(callback){
callback(item, false, entry);
}}
}};
window.wd_intersection_observer_add=function(items, callback){
items.each(function(){
var $self=jQuery(this),
id=$self.attr('id');
if(! $self.hasClass('wd_intersection_inited')){
if(! id){
id='io-' +('' + Math.random()).replace('.', '');
$self.attr('id', id);
}
$self.addClass('wd_intersection_inited');
if(callback){
$self.data('trx-addons-intersection-callback', callback);
}
if(typeof WD_STORAGE['intersection_observer_items']=='undefined'){
WD_STORAGE['intersection_observer_items']={};}
WD_STORAGE['intersection_observer_items'][id]=$self;
if(typeof WD_STORAGE['intersection_observer']!=='undefined'){
WD_STORAGE['intersection_observer'].observe($self.get(0));
}}
});
};
window.wd_intersection_observer_remove=function(items){
items.each(function(){
var $self=jQuery(this),
id=$self.attr('id');
if($self.hasClass('wd_intersection_inited')){
$self.removeClass('wd_intersection_inited');
delete WD_STORAGE['intersection_observer_items'][id];
if(typeof WD_STORAGE['intersection_observer']!=='undefined'){
WD_STORAGE['intersection_observer'].unobserve($self.get(0));
}}
});
};}
function wd_scroll_actions(){
$document.trigger('action.scroll_wd');
wd_fix_sidebar();
wd_fix_nav_links();
wd_fix_share_links();
wd_shift_under_panels();
wd_full_post_reading();
WD_STORAGE['scroll_busy']=false;
}
function wd_add_to_read_list(post_id){
if(post_id > 0){
var read_list=wd_get_storage('wd_post_read');
if(read_list&&read_list.charAt(0)=='['){
read_list=JSON.parse(read_list);
}else{
read_list=[];
}
if(read_list.indexOf(post_id)==-1){
read_list.push(post_id);
}
wd_set_storage('wd_post_read', JSON.stringify(read_list));
}}
var fpr_bt, fpr_cont, fpr_cs, fpr_ch, fpr_pw;
function wd_full_post_read_change_state(){
fpr_bt=jQuery('.full_post_close');
if(fpr_bt.length==1){
fpr_cont=fpr_bt.parent();
fpr_cs=fpr_cont.offset().top;
fpr_ch=fpr_cont.height();
fpr_pw=fpr_bt.find('.full_post_progress');
}}
function wd_full_post_reading(){
if(typeof fpr_bt=='undefined'){
wd_full_post_read_change_state();
}
if(fpr_bt.length==1){
var ws=wd_window_scroll_top(),
wh=wd_window_height();
if(ws > fpr_cs){
if(fpr_pw.length===0){
fpr_bt.append('<span class="full_post_progress">'
+ '<svg viewBox="0 0 50 50">'
+ '<circle class="full_post_progress_bar" cx="25" cy="25" r="22"></circle>'
+ '</svg>'
+ '</span>'
);
fpr_pw=fpr_bt.find('.full_post_progress');
}
var bar=fpr_pw.find('.full_post_progress_bar'),
bar_max=parseFloat(bar.css('stroke-dasharray'));
if(fpr_cs + fpr_ch > ws + wh){
var now=fpr_cs + fpr_ch -(ws + wh),
delta=bar.data('delta');
if(delta==undefined){
delta=now;
bar.data('delta', delta);
}
bar.css('stroke-dashoffset', Math.min(1, now / delta) * bar_max);
if(now / delta < 0.5){
var post=fpr_cont.prev(),
post_id=post.data('post-id');
post.addClass('full_post_read');
wd_add_to_read_list(post_id);
}}else if(! fpr_bt.hasClass('full_post_read_complete')){
fpr_bt.addClass('full_post_read_complete');
}else if(fpr_cs + fpr_ch + wh / 3 < ws + wh){
fpr_bt.trigger('click');
}}else{
if(fpr_pw.length!==0){
fpr_pw.remove();
}}
}}
function wd_shift_under_panels(){
if($body.hasClass('header_position_under')&&! wd_browser_is_mobile()){
if($body.hasClass('mobile_layout')){
if($header.css('position')=='fixed'){
$header.css({
'position': 'relative',
'left': 'auto',
'top': 'auto',
'width': 'auto',
'transform': 'none',
'zIndex': 3
}
);
$header.find('.top_panel_mask').hide();
$page_content_wrap.css({
'marginTop': 0,
'marginBottom': 0,
'zIndex': 2
}
);
$footer.css({
'position': 'relative',
'left': 'auto',
'bottom': 'auto',
'width': 'auto',
'transform': 'none',
'zIndex': 1
}
);
$footer.find('.top_panel_mask').hide();
}
return;
}
var delta=50;
var scroll_offset=wd_window_scroll_top();
var header_height=_header_height;
var shift           = ! (/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor))
|| $header.find('.slider_engine_revo').length===0
? 0	//1.2		// Parallax speed (if 0 - disable parallax)
: 0;
var mask=$header.find('.top_panel_mask');
var mask_opacity=0;
var css={};
if(mask.length===0){
$header.append('<div class="top_panel_mask"></div>');
mask=$header.find('.top_panel_mask');
}
if($header.css('position')!=='fixed'){
$page_content_wrap.css({
'zIndex': 5,
'marginTop': header_height + 'px'
}
);
$header.css({
'position': 'fixed',
'left': 0,
'top': wd_adminbar_height() + 'px',
'width': '100%',
'zIndex': 3
}
);
}else{
$page_content_wrap.css('marginTop', header_height + 'px');
}
if(scroll_offset > 0){
var offset=scroll_offset;
if(offset <=header_height){
mask_opacity=Math.max(0, Math.min(0.8, (offset - delta) / header_height));
if(shift){
$header.css('transform', 'translate3d(0px, ' + (-Math.round(offset / shift)) + 'px, 0px)');
}
mask.css({
'opacity': mask_opacity,
'display': offset===0 ? 'none':'block'
}
);
}else{
if(shift){
$header.css('transform', 'translate3d(0px, ' + (-Math.round(offset / shift)) + 'px, 0px)');
}}
}else{
if(shift){
$header.css('transform', 'none');
}
if(mask.css('display')!='none'){
mask.css({
'opacity': 0,
'display': 'none'
}
);
}}
var footer_height=Math.min(_footer_height, wd_window_height());
var footer_visible=(scroll_offset + wd_window_height()) -($header.outerHeight() + $page_content_wrap.outerHeight());
if($footer.css('position')!=='fixed'){
$page_content_wrap.css({
'marginBottom': footer_height + 'px'
}
);
$footer.css({
'position': 'fixed',
'left': 0,
'bottom': 0,
'width': '100%',
'zIndex': 2
}
);
}else{
$page_content_wrap.css('marginBottom', footer_height + 'px');
}
if(footer_visible > 0){
if($footer.css('zIndex')==2){
$footer.css('zIndex', 4);
}
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){
mask_opacity=Math.max(0, Math.min(0.8, (footer_height - footer_visible) / footer_height));
if(shift){
$footer.css('transform', 'translate3d(0px, ' + Math.round((footer_height - footer_visible) / shift) + 'px, 0px)');
}
mask.css({
'opacity': mask_opacity,
'display': footer_height - footer_visible <=0 ? 'none':'block'
}
);
}else{
if(shift){
$footer.css('transform', 'none');
}
if(mask.css('display')!='none'){
mask.css({
'opacity': 0,
'display': 'none'
}
);
}}
}else{
if($footer.css('zIndex')==4){
$footer.css('zIndex', 2);
}}
}}
function wd_fix_footer(){
if($body.hasClass('header_position_under')&&! wd_browser_is_mobile()){
if($footer.length > 0){
var ft_height=$footer.outerHeight(false),
pc=$page_content_wrap,
pc_offset=pc.offset().top,
pc_height=pc.height();
if(pc_offset + pc_height + ft_height < wd_window_height()){
if($footer.css('position')!='absolute'){
$footer.css({
'position': 'absolute',
'left': 0,
'bottom': 0,
'width' :'100%'
});
}}else{
if($footer.css('position')!='relative'){
$footer.css({
'position': 'relative',
'left': 'auto',
'bottom': 'auto'
});
}}
}}
}
function wd_fix_sidebar(force){
if($body.hasClass('fixed_blocks_sticky')){
return;
}
$sidebar.each(function(){
var sb=jQuery(this);
var content=sb.siblings('.content');
var old_style='';
if(content.length==0){
return;
}
if(content.css('float')=='none'){
old_style=sb.data('old_style');
if(old_style!==undefined){
sb.attr('style', old_style).removeAttr('data-old_style');
}}else{
var sb_height=sb.outerHeight();
var sb_shift=30;
var content_height=content.outerHeight();
var content_top=content.offset().top;
var content_shift=content.position().top;
if(sb_height < content_height&&wd_window_scroll_top() + wd_fixed_rows_height() > content_top){
var sb_init={
'position': 'undefined',
'float': 'none',
'top': 'auto',
'bottom': 'auto',
'marginLeft': '0',
'marginRight': '0'
};
if(typeof WD_STORAGE['scroll_offset_last']=='undefined'){
WD_STORAGE['sb_top_last']=content_top;
WD_STORAGE['scroll_offset_last']=wd_window_scroll_top();
WD_STORAGE['scroll_dir_last']=1;
}
var scroll_dir=wd_window_scroll_top() - WD_STORAGE['scroll_offset_last'];
if(scroll_dir===0){
scroll_dir=WD_STORAGE['scroll_dir_last'];
}else{
scroll_dir=scroll_dir > 0 ? 1:-1;
}
var sb_big=sb_height + sb_shift >=wd_window_height() - wd_fixed_rows_height(),
sb_top=sb.offset().top;
if(sb_top < 0){
sb_top=WD_STORAGE['sb_top_last'];
}
if(sb_big){
if(scroll_dir!=WD_STORAGE['scroll_dir_last']&&sb.css('position')=='fixed'){
sb_init.position='absolute';
sb_init.top=sb_top + content_shift - content_top;
}else if(scroll_dir > 0){
if(wd_window_scroll_top() + wd_window_height() >=content_top + content_height){
sb_init.position='absolute';
sb_init.bottom=0;
}else if(wd_window_scroll_top() + wd_window_height() >=(sb.css('position')=='absolute' ? sb_top:content_top) + sb_height + sb_shift){
sb_init.position='fixed';
sb_init.bottom=sb_shift;
}}else{
if(wd_window_scroll_top() + wd_fixed_rows_height() <=sb_top){
sb_init.position='fixed';
sb_init.top=wd_fixed_rows_height();
}}
}else{
if(wd_window_scroll_top() + wd_fixed_rows_height() >=content_top + content_height - sb_height){
sb_init.position='absolute';
sb_init.bottom=0;
}else{
sb_init.position='fixed';
sb_init.top=wd_fixed_rows_height();
}}
if(force&&sb_init.position=='undefined'&&sb.css('position')=='absolute'){
sb_init.position='absolute';
if(sb.css('top')!='auto'){
sb_init.top=sb.css('top');
}else{
sb_init.bottom=sb.css('bottom');
}}
if(sb_init.position=='absolute'||sb_init.position=='undefined'){
if(sb_init.top=='auto'&&sb_init.bottom=='auto'){
sb_init.top=sb.offset().top;
}
if(sb_init.top!='auto'){
if(sb_init.top + sb_height > content_height){
sb_init.position='absolute';
sb_init.top=content_shift + content_height - sb_height;
force=true;
}
if(sb_init.top + sb_height <=content_shift + content_height&&sb_init.top >=wd_window_scroll_top() + wd_window_height()){
sb_init.position='fixed';
sb_init.top='auto';
sb_init.bottom=sb_shift;
force=true;
}}
}else if(sb_init.position=='fixed'){
if(sb_init.top=='auto'&&sb_init.bottom=='auto'&&sb.css('top')!='auto'){
sb_init.top=parseFloat(sb.css('top'));
}
if(sb_init.top!='auto'&&wd_window_scroll_top() + sb_init.top + sb_height > content_top + content_height){
sb_init.position='absolute';
sb_init.top=content_shift + content_height - sb_height;
force=true;
}}
if(sb_init.position!='undefined'){
var style=sb.attr('style');
if(!style) style='';
if(!sb.prev().hasClass('sidebar_fixed_placeholder')){
sb.css(sb_init);
WD_STORAGE['scroll_dir_last']=0;
sb.before('<div class="sidebar_fixed_placeholder '+sb.attr('class')+'"'
+ (sb.data('sb') ? ' data-sb="' + sb.data('sb') + '"':'')
+ '></div>');
}
sb_init.left=sb_init.position=='fixed'||$body.hasClass('body_style_fullwide')||$body.hasClass('body_style_fullscreen')
? sb.prev().offset().left
: sb.prev().position().left;
sb_init.right='auto';
sb_init.width=sb.prev().width() + parseFloat(sb.prev().css('paddingLeft')) + parseFloat(sb.prev().css('paddingRight'));
if(force
|| sb.css('position')!=sb_init.position
|| WD_STORAGE['scroll_dir_last']!=scroll_dir
|| sb.width()!=sb_init.width){
if(sb.data('old_style')===undefined){
sb.attr('data-old_style', style);
}
sb.css(sb_init);
}}
WD_STORAGE['sb_top_last']=sb_top;
WD_STORAGE['scroll_offset_last']=wd_window_scroll_top();
WD_STORAGE['scroll_dir_last']=scroll_dir;
}else{
old_style=sb.data('old_style');
if(old_style!==undefined){
sb.attr('style', old_style).removeAttr('data-old_style');
if(sb.prev().hasClass('sidebar_fixed_placeholder')){
sb.prev().remove();
}}
}}
});
}
function wd_fix_nav_links(){
if($single_nav_links_fixed.length > 0&&$single_nav_links_fixed.css('position')=='fixed'){
var window_bottom=wd_window_scroll_top() + wd_window_height(),
article=jQuery('.post_item_single'),
article_top=article.length > 0 ? article.offset().top:wd_window_height(),
article_bottom=article_top +(article.length > 0 ? article.height() * 2 / 3:0),
footer_top=$footer.length > 0 ? $footer.offset().top:100000;
if(article_bottom < window_bottom&&footer_top > window_bottom){
if(! $single_nav_links_fixed.hasClass('nav-links-visible')){
$single_nav_links_fixed.addClass('nav-links-visible');
}}else{
if($single_nav_links_fixed.hasClass('nav-links-visible')){
$single_nav_links_fixed.removeClass('nav-links-visible');
}}
}}
function wd_fix_share_links(){
if($single_post_info_fixed.length > 0){
var frh=wd_fixed_rows_height() + 10,
st=wd_window_scroll_top() + frh;
$single_post_info_fixed.each(function(){
var share_links=jQuery(this),
share_links_top=share_links.offset().top,
share_links_left=share_links.offset().left,
share_links_height=share_links.height(),
share_links_position=share_links.css('position'),
article=share_links.parents('.post_content'),
article_top=article.offset().top,
article_bottom=article_top + article.height();
if(share_links_position=='absolute'){
if(st >=article_top&&st + share_links_height < article_bottom){
share_links
.data('abs-pos', {
'left': share_links.css('left'),
'top':  share_links.css('top')})
.addClass('post_info_vertical_fixed_on')
.css({
'top':  frh,
'left': share_links_left
});
}}else if(share_links_position=='fixed'){
if(st < article_top){
if(share_links.hasClass('post_info_vertical_fixed_on')){
var abs_pos=share_links.data('abs-pos');
share_links
.removeClass('post_info_vertical_fixed_on')
.css({
'top': abs_pos.top,
'left': abs_pos.left
});
}}else if(st + share_links_height >=article_bottom){
share_links.fadeOut();
}else if(share_links.css('display')=='none'){
share_links.fadeIn();
}}
});
}}
function wd_resize_actions(cont){
_header_height=$header.length===0 ? 0:$header.height();
_footer_height=$footer.length===0 ? 0:$footer.height();
wd_check_layout();
wd_fix_sidebar(true);
wd_fix_footer();
wd_fix_nav_links();
wd_stretch_width(cont);
wd_stretch_bg_video();
wd_vc_row_fullwidth_to_boxed(cont);
wd_stretch_sidemenu();
wd_resize_video(cont);
wd_shift_under_panels();
$document.trigger('action.resize_wd', [cont]);
}
function wd_stretch_sidemenu(){
var toc_items=$menu_side_wrap.find('.toc_menu_item');
if(toc_items.length===0){
return;
}
var toc_items_height=wd_window_height()
- wd_adminbar_height()
- $menu_side_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;
if(WD_STORAGE['menu_side_stretch']&&toc_items.length >=5&&th >=30){
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'
}
);
}}
$document.on('action.toc_menu_item_active', function(){
var toc_menu=$menu_side_wrap.find('#toc_menu');
if(toc_menu.length===0){
return;
}
var toc_items=toc_menu.find('.toc_menu_item');
if(toc_items.length===0){
return;
}
var th=toc_items.eq(0).height(),
toc_menu_pos=parseFloat(toc_menu.css('top')),
toc_items_height=toc_items.length * th,
menu_side_height=wd_window_height()
- wd_adminbar_height()
- $menu_side_logo.outerHeight()
- $menu_side_logo.next('.toc_menu_item').outerHeight();
if(toc_items_height > menu_side_height){
var toc_item_active=$menu_side_wrap.find('.toc_menu_item_active').eq(0);
if(toc_item_active.length==1){
var toc_item_active_pos=(toc_item_active.index() + 1) * th;
if(toc_menu_pos + toc_item_active_pos > menu_side_height - th){
toc_menu.css('top', Math.max(-toc_item_active_pos + 3 * th, menu_side_height - toc_items_height));
}else if(toc_menu_pos < 0&&toc_item_active_pos < -toc_menu_pos + 2 * th){
toc_menu.css('top', Math.min(-toc_item_active_pos + 3 * th, 0));
}}
}else if(toc_menu_pos < 0){
toc_menu.css('top', 0);
}});
function wd_check_layout(){
var resize=true;
if($body.hasClass('no_layout')){
$body.removeClass('no_layout');
resize=false;
}
var w=window.innerWidth;
if(w==undefined){
w=wd_window_width() +(wd_window_height() < wd_document_height()||wd_window_scroll_top() > 0 ? 16:0);
}
if(w < WD_STORAGE['mobile_layout_width']){
if(! $body.hasClass('mobile_layout')){
$body.removeClass('desktop_layout').addClass('mobile_layout');
$document.trigger('action.switch_to_mobile_layout');
if(resize){
$window.trigger('resize');
}}
}else{
if(! $body.hasClass('desktop_layout')){
$body.removeClass('mobile_layout').addClass('desktop_layout');
jQuery('.menu_mobile').removeClass('opened');
jQuery('.menu_mobile_overlay').hide();
$document.trigger('action.switch_to_desktop_layout');
if(resize){
$window.trigger('resize');
}}
}
if(WD_STORAGE['mobile_device']||wd_browser_is_mobile()){
$body.addClass('mobile_device');
}}
function wd_stretch_width(cont){
if(cont===undefined){
cont=$body;
}
$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=$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');
}
);
}
function wd_resize_video(cont){
if(cont===undefined){
cont=$body;
}
cont.find('video').each(function(){
var $self=jQuery(this);
if(( ! WD_STORAGE['resize_tag_video']&&$self.parents('.mejs-mediaelement').length===0)
|| $self.hasClass('trx_addons_resize')
|| $self.hasClass('trx_addons_noresize')
|| $self.parents('div:hidden,section:hidden,article:hidden').length > 0
){
return;
}
var video=$self.addClass('wd_resize').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').eq(0);
var mfp_cont=video.parents('.mfp-content').eq(0);
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, 10);
h_attr=parseInt(h_attr, 10);
var w_real=Math.ceil(mejs_cont.length > 0
? Math.min(percent ? 10000:w_attr, mejs_cont.parents('div,article').eq(0).width())
: Math.min(percent ? 10000:w_attr, video.parents('div,article').eq(0).width())
);
if(mfp_cont.length > 0){
w_real=Math.max(mfp_cont.width(), w_real);
}
var h_real=Math.ceil(percent ? w_real / ratio:w_real / w_attr * h_attr);
if(parseInt(video.attr('data-last-width'), 10)==w_real){
return;
}
if(percent){
video.height(h_real);
}else if(video.parents('.wp-video-playlist').length > 0){
if(mejs_cont.length===0){
video.attr({'width': w_real, 'height': h_real});
}}else{
video.attr({'width': w_real, 'height': h_real}).css({'width': w_real + 'px', 'height': h_real + 'px'});
if(mejs_cont.length > 0){
wd_set_mejs_player_dimensions(video, w_real, h_real);
}}
video.attr('data-last-width', w_real);
});
if(WD_STORAGE['resize_tag_iframe']){
cont.find('.video_frame iframe,iframe').each(function(){
var $self=jQuery(this);
if($self.hasClass('trx_addons_resize')||$self.hasClass('trx_addons_noresize')||$self.addClass('wd_resize').parents('div:hidden,section:hidden,article:hidden').length > 0){
return;
}
var iframe=$self.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(':')
: (iframe.attr('width')&&iframe.attr('height')
? [iframe.attr('width'), iframe.attr('height')]
: [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, 10);
h_attr=parseInt(h_attr, 10);
var par=iframe.parents('div,section').eq(0),
contains=iframe.data('contains-in-parent')=='1'||iframe.hasClass('contains-in-parent'),
nostretch=iframe.data('no-stretch-to-parent')=='1'||iframe.hasClass('no-stretch-to-parent'),
pw=Math.ceil(par.width()),
ph=Math.ceil(par.height()),
w_real=nostretch ? Math.min(w_attr, pw):pw,
h_real=Math.ceil(percent ? w_real / ratio:w_real / w_attr * h_attr);
if(contains&&par.css('position')=='absolute'&&h_real > ph){
h_real=ph;
w_real=Math.ceil(percent ? h_real * ratio:h_real * w_attr / h_attr);
}
if(parseInt(iframe.attr('data-last-width'), 10)==w_real){
return;
}
iframe.css({'width': w_real + 'px', 'height': h_real + 'px'});
iframe.attr('data-last-width', w_real);
});
}}
function wd_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);
}else if(mejs.players[pl].media.setSize){
mejs.players[pl].media.setSize(w, h);
}
mejs.players[pl].setPlayerSize(w, h);
mejs.players[pl].setControlsSize();
}}
}}
function wd_stretch_bg_video(){
var video_wrap=jQuery('div#background_video,.tourmaster-background-video');
if(video_wrap.length===0){
return;
}
var cont=video_wrap.hasClass('tourmaster-background-video') ? video_wrap.parent():video_wrap,
w=cont.width(),
h=cont.height(),
video=video_wrap.find('>iframe,>video');
if(w / h < 16 / 9){
w=h / 9 * 16;
}else{
h=w / 16 * 9;
}
video
.attr({'width': w, 'height': h})
.css({'width': w, 'height': h});
}
$document.on('vc-full-width-row action.before_resize_trx_addons', function(e, container){
wd_vc_row_fullwidth_to_boxed(jQuery(container));
});
function wd_vc_row_fullwidth_to_boxed(cont){
if($body.hasClass('body_style_boxed')
|| $body.hasClass('menu_side_present')
|| parseInt($page_wrap.css('paddingLeft'), 10) > 0
){
if(cont===undefined||! cont.hasClass('.vc_row')||! cont.data('vc-full-width')){
cont=jQuery('.vc_row[data-vc-full-width="true"]');
}
var rtl=jQuery('html').attr('dir')=='rtl';
var page_wrap_pl=parseInt($page_wrap.css('paddingLeft'), 10);
if(isNaN(page_wrap_pl)){
page_wrap_pl=0;
}
var page_wrap_pr=parseInt($page_wrap.css('paddingRight'), 10);
if(isNaN(page_wrap_pr)){
page_wrap_pr=0;
}
var page_wrap_width=$page_wrap.outerWidth() - page_wrap_pl - page_wrap_pr;
var content_wrap=$page_content_wrap.find('.content_wrap');
var content_wrap_width=content_wrap.width();
var indent=(page_wrap_width - content_wrap_width) / 2;
cont.each(function(){
var $self=jQuery(this);
var mrg=parseInt($self.css('marginLeft'), 10);
var stretch_content=$self.attr('data-vc-stretch-content');
var stretch_row=$self.attr('data-vc-full-width');
var in_content=$self.parents('.content_wrap').length > 0;
$self.css({
'width':         in_content&&! stretch_content&&! stretch_row ? Math.min(page_wrap_width, content_wrap_width):page_wrap_width,
'left':          rtl ? 'auto':(in_content ? -indent:0) - mrg,
'right':         ! rtl ? 'auto':(n_content ? -indent:0) - mrg,
'padding-left':  stretch_content ? 0:indent + mrg,
'padding-right': stretch_content ? 0:indent + mrg
});
});
}}
ready_busy=false;
});