jQuery(function($) {
jQuery(".banner-section.banner-style-1 .banner-single .banner-caption .banner-catption-wrapper .banner-caption-title").html(function(){
var text2= jQuery(this).text().trim().split(" ");
var las2 = text2[(text2.length-1)];
if(text2.length > 1 ){
text2.splice((text2.length-1),1)
var updatedTex2 = `${las2}`
text2.splice((text2.length), 0, updatedTex2)
return text2.join(" ");
} else if(text2.length == 1 ) {
var updatedTex2 = `${text2}`
// text2.splice((text2.length), 0, updatedTex2)
return updatedTex2;
}else{
return text2.join(" ");
}
});
/* -----------------------------------------
Preloader
----------------------------------------- */
$('#preloader').delay(1000).fadeOut();
$('#loader').delay(1000).fadeOut("slow");
/* -----------------------------------------
Navigation
----------------------------------------- */
$('.menu-toggle').click(function() {
$(this).toggleClass('open');
});
/* -----------------------------------------
Keyboard Navigation
----------------------------------------- */
$(window).on('load resize', burger_joint_keyboard_navigation)
function burger_joint_keyboard_navigation(event) {
if ($(window).width() < 1200) {
$('.main-navigation').find("li").last().bind('keydown', function(e) {
if (e.shiftKey && e.which === 9) {
if ($(this).hasClass('focus')) {
}
} else if (e.which === 9) {
e.preventDefault();
$('#masthead').find('.menu-toggle').focus();
}
})
} else {
$('.main-navigation').find("li").unbind('keydown')
}
}
burger_joint_keyboard_navigation()
var burger_joint_primary_menu_toggle = $('#masthead .menu-toggle');
burger_joint_primary_menu_toggle.on('keydown', function(e) {
var tabKey = e.keyCode === 9;
var shiftKey = e.shiftKey;
if (burger_joint_primary_menu_toggle.hasClass('open')) {
if (shiftKey && tabKey) {
e.preventDefault();
const $the_last_li = $('.main-navigation').find("li").last()
$the_last_li.find('a').focus()
if (!$the_last_li.hasClass('focus')) {
const $is_parent_on_top = true
let $the_parent_ul = $the_last_li.closest('ul.sub-menu')
let count = 0
while (!!$the_parent_ul.length) {
++count
const $the_parent_li = $the_parent_ul.closest('li')
if (!!$the_parent_li.length) {
$the_parent_li.addClass('focus')
$the_parent_ul = $the_parent_li.closest('ul.sub-menu')
// Blur the cross
$(this).blur()
$the_last_li.addClass('focus')
}
if (!$the_parent_ul.length) {
break;
}
}
}
};
}
})
/* -----------------------------------------
Main Slider
----------------------------------------- */
// Determine if the document is RTL
var isRtl = $('html').attr('dir') === 'rtl';
$('.banner-slider').slick({
autoplaySpeed: 3000,
dots: false,
arrows: false,
nextArrow: '',
prevArrow: '',
rtl: isRtl, // Set the rtl option
responsive: [{
breakpoint: 1025,
settings: {
dots: true,
arrows: false,
}
},
{
breakpoint: 480,
settings: {
dots: true,
arrows: false,
}
}]
});
/* -----------------------------------------
Scroll Top
----------------------------------------- */
var scrollToTopBtn = $('.burger-joint-scroll-to-top');
$(window).scroll(function() {
if ($(window).scrollTop() > 400) {
scrollToTopBtn.addClass('show');
} else {
scrollToTopBtn.removeClass('show');
}
});
scrollToTopBtn.on('click', function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: 0
}, '300');
});
});