PNG  IHDR pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_F@8N ' p @8N@8}' p '#@8N@8N pQ9p!i~}|6-ӪG` VP.@*j>[ K^<֐Z]@8N'KQ<Q(`s" 'hgpKB`R@Dqj '  'P$a ( `D$Na L?u80e J,K˷NI'0eݷ(NI'؀ 2ipIIKp`:O'`ʤxB8Ѥx Ѥx $ $P6 :vRNb 'p,>NB 'P]-->P T+*^h& p '‰a ‰ (ĵt#u33;Nt̵'ޯ; [3W ~]0KH1q@8]O2]3*̧7# *p>us p _6]/}-4|t'|Smx= DoʾM×M_8!)6lq':l7!|4} '\ne t!=hnLn (~Dn\+‰_4k)0e@OhZ`F `.m1} 'vp{F`ON7Srx 'D˸nV`><;yMx!IS钦OM)Ե٥x 'DSD6bS8!" ODz#R >S8!7ّxEh0m$MIPHi$IvS8IN$I p$O8I,sk&I)$IN$Hi$I^Ah.p$MIN$IR8I·N "IF9Ah0m$MIN$IR8IN$I 3jIU;kO$ɳN$+ q.x* tEXtComment

Viewing File: /home/u423589436/domains/kingshomeandcomfort.com/public_html/assets/js/biolife.framework.js

/*Biolife Framework*/
;(function ($) {
    'use strict';

    let $clone_to_mobile_sidebar 	= $('.clone-to-mobile-sidebar'),
        $sidebar                    = $('#sidebar'),
    	$document					= $(document),
    	$body					    = $('body'),
    	BIOLIFE_MOBILE_MENU 		= {

    		init:function(obj){
				this.wrap_container();
				this.clone_menus(obj);
				return this;
		    },

    		clone_menus: function (obj) {
				let i 					= 0,
				    panels_html_args 	= Array();

				obj.each(function () {
				    let $this               = $(this),
				        $this_menu_id       = $this.attr('id'),
				        $this_menu_clone_id = 'biolife-clone-' + $this_menu_id;
				    if (!$('#' + $this_menu_clone_id).length) {
				        let $__this     = $(this),
				            this_id     = $__this.attr('id'),
				            $thisClone  = $this.clone(true);
				        $thisClone.find('.menu-item').addClass('clone-menu-item');
				        $thisClone.find('[id]').each(function () {
				            $__this.attr('id', BIOLIFE_MOBILE_MENU.add_string_prefix( this_id, 'biolife-clone-'));
				        });
				        $thisClone.find('.biolife-menu').addClass('biolife-menu-clone');
				        let $thisMainPanel = $('#biolife-clone-wrap .biolife-panels #biolife-main-panel ul');
				        $thisMainPanel.append( $thisClone.html());
				        BIOLIFE_MOBILE_MENU.insert_children( $thisMainPanel, i);
				    }
				});

				$document.on('click', '.biolife-next-panel', function (e) {
		            e.preventDefault();
		            let $this     = $(this),
		                thisItem  = $this.closest('.menu-item'),
		                thisPanel = $this.closest('.biolife-panel'),
		                target_id = $this.attr('href');
		            if ($(target_id).length) {
		                thisPanel.addClass('biolife-sub-opened');
		                $(target_id).addClass('biolife-panel-opened').removeClass('biolife-hidden').attr('data-parent-panel', thisPanel.attr('id'));
		                /*Insert current panel title*/
		                let item_title          = thisItem.find('.menu-name').attr('data-title'),
		                    firstItemTitle      = '',
		                    $biolife_panels     = $('.biolife-panels-actions-wrap'),
		                    current_panel_title = $biolife_panels.find('.biolife-current-panel-title');
		                if( current_panel_title.length){
		                    firstItemTitle = current_panel_title.html();
		                }
		                if ( typeof item_title !== 'undefined') {
		                    if (current_panel_title.length) {
		                        current_panel_title.html(item_title);
		                    }else{
		                        $biolife_panels.prepend('<span class="biolife-current-panel-title">'+item_title+'</span>');
		                    }
		                }else {
		                    current_panel_title.remove();
		                }
		                $biolife_panels.find('.biolife-prev-panel').remove();
		                $biolife_panels.prepend('<a data-prenttitle="'+firstItemTitle+'" class="biolife-prev-panel" href="#' + thisPanel.attr('id') + '" data-cur-panel="' + target_id + '" data-target="#' + thisPanel.attr('id') + '"></a>');
		            }
		        });

		        $document.on('click', '.biolife-prev-panel', function (e) {
		            e.preventDefault();
		            let $this                   = $(this),
		                cur_panel_id            = $this.attr('data-cur-panel'),
		                target_id               = $this.attr('href'),
		                current_panel_title     = $('.biolife-panels-actions-wrap .biolife-current-panel-title'),
		                previous_panel          = $('.biolife-panels-actions-wrap .biolife-prev-panel');

		            $(cur_panel_id).removeClass('biolife-panel-opened').addClass('biolife-hidden');
		            $(target_id).addClass('biolife-panel-opened').removeClass('biolife-sub-opened');

		            /*Set new back button*/
		            let new_parent_panel_id = $(target_id).attr('data-parent-panel');
		            if ( typeof new_parent_panel_id == 'undefined') {
		                let root_title = $('.biolife-panels-actions-wrap').data('root_title');
		                if(typeof root_title !== 'undefined'){
		                    current_panel_title.html(root_title);
		                }else{
		                    current_panel_title.remove();
		                }
		                previous_panel.remove();
		            }else {
		                previous_panel.attr('href', '#' + new_parent_panel_id).attr('data-cur-panel', target_id).attr('data-target', '#' + new_parent_panel_id);
		                /*Insert new panel title*/
		                let item_title = $('#' + new_parent_panel_id).find('.biolife-next-panel[data-target="' + target_id + '"]').closest('.menu-item').find('.menu-name').attr('data-title');
		                if ( typeof item_title !== 'undefined') {
		                    if ( !current_panel_title.length) {
		                        $('.biolife-panels-actions-wrap').prepend('<span class="biolife-current-panel-title">'+item_title+'</span>');
		                    }else{
		                        current_panel_title.html(item_title);
		                    }
		                }else {
		                    current_panel_title.remove();
		                }
		            }
		        });
		        setTimeout(function () {
		            $('#biolife-clone-wrap .biolife-panels').find('.biolife-carousel').biolife_init_carousel();
		        }, 1000);
			},

    		insert_children: function (obj, i) {
		        let index       = parseInt(i, 10),
		            children    = obj.find('.menu-item-has-children');
		        if ( children.length) {
		            children.each(function () {
		                let thisChildItem   = $(this),
		                	next_nav_target = 'biolife-panel-' + String(index);
		                BIOLIFE_MOBILE_MENU.insert_children(thisChildItem,index);
		                while ($('#' + next_nav_target).length) {
		                    index++;
		                    next_nav_target = 'biolife-panel-' + String(index);
		                }
		                thisChildItem.prepend('<a class="biolife-next-panel" href="#' + next_nav_target + '" data-target="#' + next_nav_target + '"></a>');
		                let submenu_html = $('<div>').append(thisChildItem.find('>.sub-menu,>.wrap-megamenu').clone()).html();
		                thisChildItem.find('> .sub-menu,> .wrap-megamenu').remove();
		                $('#biolife-clone-wrap .biolife-panels').append('<div id="' + next_nav_target + '" class="biolife-panel biolife-sub-panel biolife-hidden">' + submenu_html + '</div>');
		            });
		        }
		    },

		    add_string_prefix: function(str, prefix) { 
		    	return prefix + str; 
		    },

		    wrap_container: function(){
		    	if($body.find('#biolife-clone-wrap').length) return 0;
				let mb_menu	='<div id="biolife-clone-wrap" class="biolife-clone-wrap">';
				mb_menu +='<div class="biolife-panels-actions-wrap" data-root_title="Main Panel">';
				mb_menu +='<span class="biolife-current-panel-title">Main Panel</span>';
				mb_menu +='<a class="biolife-close-btn biolife-close-panels" href="#" data-object="open-mobile-menu">&times;</a>';
				mb_menu +='</div>';
				mb_menu +='<div class="biolife-panels">';
				mb_menu +='<div id="biolife-main-panel" class="biolife-panel biolife-main-panel">';
				mb_menu +='<ul class="depth-01"></ul>';
				mb_menu +='</div></div></div>';
		        $body.prepend(mb_menu);
		    }
    	};

	$.fn.biolife_best_equal_products = function(){
        let eq_height_contain = $('.eq-height-contain');
        if ( eq_height_contain.length){
            eq_height_contain.each( function( i, e){
                $(this).biolife_equal_height();
            });
        }
        window.onresize = function(event) {
            event.preventDefault();
            $.fn.biolife_best_equal_products();
        };
    };

    $.fn.biolife_init_carousel = function () {

        if( typeof $.fn.slick == 'undefined'){
            console.error('Biolife-Framework need to use slick library inside, pls make sure It was loaded before used');
            return;
        }

        /**
         * Init Carousel
         * added a new param: "slidesMargin":30
         *
         */

        $(this).not('.slick-initialized').each(function () {
            let slide           = $(this),
                default_config  = slide.attr('data-slick'),
                config          = default_config !== undefined ? JSON.parse(default_config) : { arrows: true, dots: false, slidesMargin: 0, slidesToShow: 1, infinite: true, speed: 400};

            if (config.vertical === true ) {
                config.prevArrow = '<span class="biolife-icon icon-left-arrow prev"></span>';
                config.nextArrow = '<span class="biolife-icon icon-arrow-right next"></span>';
            } else {
                config.prevArrow = '<span class="biolife-icon icon-left-arrow prev"></span>';
                config.nextArrow = '<span class="biolife-icon icon-arrow-right next"></span>';
            }

            slide.on('init', function (event, slick) {
                $(event.target).trigger( 'biolife_trigger_init_slide', slick);
            });
            slide.slick(config);
        });
    };

    $.fn.biolife_vertical_menu = function () {
        $(this).each( function () {
            let this_menu = $(this);
            this_menu.on('click', '.block-title', function (e) {
                e.preventDefault();
                this_menu.toggleClass('open-menu');
            });
            $document.on('reset-vertical-menu', function (e) {
                e.preventDefault();
                this_menu.removeClass('open-menu');
            });
        });
    };

    $.fn.biolife_sticky_header = function () {
        $(this).each(function () {
            let _this           = $(this),
                header_height   = $('#header').height(),
                position_1      = header_height + 250,
                position_2      = header_height + 700;
            $(window).scroll( function (event) {
                event.preventDefault();
                let scrl_top = $(this).scrollTop();
                if ( scrl_top > position_1 ) {
                    _this.addClass('pre-sticky');
                    if ( scrl_top > position_2){
                        _this.addClass('is-sticky');
                    }else{
                        _this.removeClass('is-sticky');
                        $document.trigger('reset-vertical-menu');
                    }
                } else {
                    _this.removeClass('pre-sticky is-sticky');
                }
            });
        });
    };

    $.fn.biolife_tab = function () {
        $(this).each(function(index,element){
            let TAB = $(this);
            TAB.on('click','.tab-link', function (e) {
                e.preventDefault();
                let $this       = $(this),
                    $tab_head   = $this.closest('li'),
                    tab_id      = $this.attr('href');
                if( !$tab_head.hasClass('active') && typeof tab_id !== undefined){
                    let $active_tab = TAB.find(tab_id);
                    if( $active_tab.length ){
                        $active_tab.siblings('.active').removeClass('active');
                        $active_tab.addClass('active').biolife_equal_height();
                        $tab_head.siblings('.active').removeClass('active');
                        $tab_head.addClass('active');
                    }
                }
            });
        });
    };

    $.fn.biolife_rating_form_handle = function () {
        $(this).each(function(index,element){
            $(this).on('click', '.btn-rating', function (e) {
                e.preventDefault();
                let btn = $(this);
                if( !btn.hasClass('selected')){
                    btn.siblings().removeClass('selected');
                    btn.addClass('selected');
                    btn.parents('span').addClass('rated');
                }
            });
        });
    };

    $.fn.biolife_accodition_handle = function () {
        $(this).each(function(index,element){
            $(this).on('click', '.btn-expand', function (e) {
                e.preventDefault();
                let tab_element  = $(this).parents('li');
                if( !tab_element.hasClass('active')){
                    let element_actived = tab_element.siblings('.active');
                    if(element_actived.length){
                        element_actived.find('.content').slideToggle(300);
                        element_actived.removeClass('active');
                    }
                }

                tab_element.toggleClass('active');
                tab_element.find('.content').slideToggle(300);
            });
        });
    };

    $.fn.biolife_countdown = function () {
        if( typeof $.fn.countdown == 'undefined'){
            console.error('Biolife-Framework need to use countdown library inside, pls make sure It was loaded before used');
            return;
        }
        let $this           = $(this),
            html_result     = '',
            string_format   = '';

        string_format += '<span class="days"><span class="number">%-D</span><span class="text">days</span></span>';
        string_format += '<span class="hours"><span class="number">%-H</span><span class="text">Hours</span></span>';
        string_format += '<span class="mins"><span class="number">%-M</span><span class="text">Mins</span></span>';
        string_format += '<span class="secs"><span class="number">%-S</span><span class="text">Secs</span></span>';

        html_result += '<span class="days"><span class="number">00</span><span class="text">days</span></span>';
        html_result += '<span class="hours"><span class="number">00</span><span class="text">Hours</span></span>';
        html_result += '<span class="mins"><span class="number">00</span><span class="text">Mins</span></span>';
        html_result += '<span class="secs"><span class="number">00</span><span class="text">Secs</span></span>';

        $this.on('biolife_countdown', function () {
            $this.each(function () {
                let $element       = $(this),
                    the_time       = $element.data('datetime');
                $element.countdown( the_time, {elapse: true});
                $element.on('update.countdown', function (event) {
                    if ( !event.elapsed ) {
                        html_result = event.strftime(string_format);
                    }
                    $element.html(html_result);
                });
            });

        }).trigger('biolife_countdown');
    };

    $.fn.biolife_equal_height  = function () {
        let products = $(this).find('.contain-product');
        if(products.length){
            products.css({'height': 'auto' });
            let max = 0;
            setTimeout(function () {
                products.each(function( i, e){
                    if ( max < $(e).height() ) {
                        max = $(e).height();
                    }
                });
                products.height(max);
            }, 100);

        }
    };

    $.fn.biolife_stretch_the_right_background = function () {
        let win_wth = $(window).width(),
            mb_resolution = ( win_wth < 1200 ) ;
        $(this).each(
            function (index, element) {
                let $this = $(this),
                    $bg_underground = $this.find('.bg_underground');
                if ($bg_underground.length) {
                    let src = $bg_underground.data('src');
                    if( !mb_resolution) {
                        let right_offset = $(document).width() - ($this.offset().left + $this.width());
                        if (parseInt(right_offset, 10) > 0) {
                            $bg_underground.css('right', -right_offset);
                        }
                    }
                    else{
                        $bg_underground.css('right', 0);
                    }
                    if( typeof src !== undefined) {
                        $bg_underground.css('background-image', 'url(' + src + ')');
                    }
                }
            }
        );
    };

    $.fn.biolife_menu_mobile = function () {
        BIOLIFE_MOBILE_MENU.init(this);
    };

    $.fn.biolife_sidebar_handle = function(){
        if( $clone_to_mobile_sidebar.length){
        	if( $sidebar.length ){
	            let $sidebar_content =  $sidebar.find('.sidebar-contain');
	            $clone_to_mobile_sidebar.clone().appendTo( $sidebar_content);
	        }
	        else{
	            let html_sidebar = '',
	                $main_content = $('#main-content');
	            html_sidebar +='<div id="sidebar" class="sidebar mobile-version">';
	            html_sidebar +='<div class="biolife-mobile-panels">';
	            html_sidebar +='<span class="biolife-current-panel-title">Sidebar</span>';
	            html_sidebar +='<a class="biolife-close-btn" href="#" data-object="open-mobile-filter">&times;</a>';
	            html_sidebar +='</div>';
	            html_sidebar +='<div class="sidebar-contain"></div>';
	            html_sidebar +='</div>';

	            if( $main_content.length){
	                $main_content.after(html_sidebar);
	                let $sidebar_content =  $('#sidebar .sidebar-contain');
	                if( $sidebar_content.length){
	                    $clone_to_mobile_sidebar.clone().appendTo($sidebar_content);
	                }
	                let $caroulsel_inside = $sidebar_content.find('.biolife-carousel');
	                if( $caroulsel_inside.length){
	                    $caroulsel_inside.biolife_init_carousel();
	                }
	            }
	        }
	    }
	    else{
	        if( $sidebar.length < 1){
	            $('.mobile-footer .block-sidebar').remove();
	        }
	    }
    };

    $.fn.biolife_sidebar_handle();
    
}( jQuery ));

















    

    

   
Back to Directory=ceiIENDB`