0byt3m1n1
Path:
/
data
/
27
/
5
/
48
/
71
/
5374886
/
user
/
6435255
/
htdocs
/
wp-content
/
themes
/
melos
/
lib
/
scripts
/
[
Home
]
File: main-frontend.js
/** /** * Wordpress Front End Enhancements. * * jQuery effects used in theme. */ // ---------------------------------------------------------------------------------- // FORMAT FOOTER LAYOUT // ---------------------------------------------------------------------------------- jQuery(document).ready(function(){ jQuery('#footer-core .widget-area:last-child').addClass("last"); // Footer - Footer Widgets Layout (Options 1 - 6) jQuery('#footer-core.option2 .widget-area').addClass("one_half"); jQuery('#footer-core.option3 .widget-area').addClass("one_third"); jQuery('#footer-core.option4 .widget-area').addClass("one_fourth"); jQuery('#footer-core.option5 .widget-area').addClass("one_fifth"); jQuery('#footer-core.option6 .widget-area').addClass("one_sixth"); // Footer - Footer Widgets Layout (Option 7) jQuery('#footer-core.option7 #footer-col1.widget-area').addClass("one_third"); jQuery('#footer-core.option7 #footer-col2.widget-area').addClass("two_third"); // Footer - Footer Widgets Layout (Option 8) jQuery('#footer-core.option8 #footer-col1.widget-area').addClass("two_third"); jQuery('#footer-core.option8 #footer-col2.widget-area').addClass("one_third"); // Footer - Footer Widgets Layout (Option 9) jQuery('#footer-core.option9 #footer-col1.widget-area').addClass("one_fourth"); jQuery('#footer-core.option9 #footer-col2.widget-area').addClass("three_fourth"); // Footer - Footer Widgets Layout (Option 10) jQuery('#footer-core.option10 #footer-col1.widget-area').addClass("three_fourth"); jQuery('#footer-core.option10 #footer-col2.widget-area').addClass("one_fourth"); // Footer - Footer Widgets Layout (Option 11) jQuery('#footer-core.option11 #footer-col1.widget-area').addClass("one_fifth"); jQuery('#footer-core.option11 #footer-col2.widget-area').addClass("four_fifth"); // Footer - Footer Widgets Layout (Option 12) jQuery('#footer-core.option12 #footer-col1.widget-area').addClass("four_fifth"); jQuery('#footer-core.option12 #footer-col2.widget-area').addClass("one_fifth"); // Footer - Footer Widgets Layout (Option 13) jQuery('#footer-core.option13 #footer-col1.widget-area').addClass("one_sixth"); jQuery('#footer-core.option13 #footer-col2.widget-area').addClass("one_sixth"); jQuery('#footer-core.option13 #footer-col3.widget-area').addClass("one_sixth"); jQuery('#footer-core.option13 #footer-col4.widget-area').addClass("one_half"); // Footer - Footer Widgets Layout (Option 14) jQuery('#footer-core.option14 #footer-col1.widget-area').addClass("one_half"); jQuery('#footer-core.option14 #footer-col2.widget-area').addClass("one_sixth"); jQuery('#footer-core.option14 #footer-col3.widget-area').addClass("one_sixth"); jQuery('#footer-core.option14 #footer-col4.widget-area').addClass("one_sixth"); // Footer - Footer Widgets Layout (Option 15) jQuery('#footer-core.option15 #footer-col1.widget-area').addClass("one_sixth"); jQuery('#footer-core.option15 #footer-col2.widget-area').addClass("one_third"); jQuery('#footer-core.option15 #footer-col3.widget-area').addClass("one_half"); // Footer - Footer Widgets Layout (Option 16) jQuery('#footer-core.option16 #footer-col1.widget-area').addClass("one_half"); jQuery('#footer-core.option16 #footer-col2.widget-area').addClass("one_third"); jQuery('#footer-core.option16 #footer-col3.widget-area').addClass("one_sixth"); // Footer - Footer Widgets Layout (Option 17) jQuery('#footer-core.option17 #footer-col1.widget-area').addClass("one_fourth"); jQuery('#footer-core.option17 #footer-col2.widget-area').addClass("one_fourth"); jQuery('#footer-core.option17 #footer-col3.widget-area').addClass("one_sixth"); jQuery('#footer-core.option17 #footer-col4.widget-area').addClass("one_sixth"); jQuery('#footer-core.option17 #footer-col5.widget-area').addClass("one_sixth"); // Footer - Footer Widgets Layout (Option 18) jQuery('#footer-core.option18 #footer-col1.widget-area').addClass("one_sixth"); jQuery('#footer-core.option18 #footer-col2.widget-area').addClass("one_sixth"); jQuery('#footer-core.option18 #footer-col3.widget-area').addClass("one_sixth"); jQuery('#footer-core.option18 #footer-col4.widget-area').addClass("one_fourth"); jQuery('#footer-core.option18 #footer-col5.widget-area').addClass("one_fourth"); }); // ---------------------------------------------------------------------------------- // FORMAT SUB-FOOTER LAYOUT // ---------------------------------------------------------------------------------- jQuery(document).ready(function(){ jQuery('#sub-footer-widgets .widget-area:last-child').addClass("last"); jQuery('#sub-footer-widgets .widget-area:last-child').after( '<div class="clearboth"></div>' ); // Footer - Footer Widgets Layout (Option 2) jQuery('#sub-footer-widgets.option2 .widget-area').addClass("one_half"); // Footer - Footer Widgets Layout (Option 3) jQuery('#sub-footer-widgets.option3 #sub-footer-col1.widget-area').addClass("one_third"); jQuery('#sub-footer-widgets.option3 #sub-footer-col2.widget-area').addClass("two_third"); // Footer - Footer Widgets Layout (Option 4) jQuery('#sub-footer-widgets.option4 #sub-footer-col1.widget-area').addClass("two_third"); jQuery('#sub-footer-widgets.option4 #sub-footer-col2.widget-area').addClass("one_third"); // Footer - Footer Widgets Layout (Option 5) jQuery('#sub-footer-widgets.option5 #sub-footer-col1.widget-area').addClass("one_fourth"); jQuery('#sub-footer-widgets.option5 #sub-footer-col2.widget-area').addClass("three_fourth"); // Footer - Footer Widgets Layout (Option 6) jQuery('#sub-footer-widgets.option6 #sub-footer-col1.widget-area').addClass("three_fourth"); jQuery('#sub-footer-widgets.option6 #sub-footer-col2.widget-area').addClass("one_fourth"); // Footer - Footer Widgets Layout (Option 7) jQuery('#sub-footer-widgets.option7 #sub-footer-col1.widget-area').addClass("one_fifth"); jQuery('#sub-footer-widgets.option7 #sub-footer-col2.widget-area').addClass("four_fifth"); // Footer - Footer Widgets Layout (Option 8) jQuery('#sub-footer-widgets.option8 #sub-footer-col1.widget-area').addClass("four_fifth"); jQuery('#sub-footer-widgets.option8 #sub-footer-col2.widget-area').addClass("one_fifth"); }); /* ---------------------------------------------------------------------------------- MASONRY - LOAD AFTER IMAGES HAVE LOADED ---------------------------------------------------------------------------------- */ jQuery(document).ready(function() { // Call imagedLoaded for Masonry if imagedLoaded function is available (function ( $ ) { if ( $.isFunction($.fn.imagesLoaded) ) { // Different target for masonry on portfolio pages than any other page if ( $( '#container' ).hasClass( 'portfolio-wrapper' ) ) { var $container = $('#container-inner'); } else if ( $( 'body' ).hasClass( 'woo-shop-grid' ) ) { var $container = $('#main-core .products'); } else { var $container = $('#container'); } $container.imagesLoaded( function() { if ( $.isFunction($.fn.masonry) ) { $container.masonry(); } }); } }( jQuery )); }); // ---------------------------------------------------------------------------------- // FORMAT MAIN HEADER MENU // ---------------------------------------------------------------------------------- function mainmenu(){ // Add menu-hover class jQuery("header .header-links ul.menu > li").hover(function(){ jQuery(this).find('ul.sub-menu:first').css({visibility: "visible",display: "none"}).parent().addClass('menu-hover'); },function(){ jQuery(this).find('ul.sub-menu:first').css({visibility: "hidden",display: "none"}).parent().removeClass('menu-hover'); }); // Add menu-parent class jQuery("header .header-links ul.menu > li").each(function(){ jQuery(this).find('ul.sub-menu').css({visibility: "visible",display: "none"}).parent().addClass('menu-parent'); }); // Change z-index of #pre-header so dropdown menus & tooltips can be seen jQuery("#pre-header").hover(function(){ jQuery( this ).css({ 'z-index' : '999991' }); },function(){ jQuery( this ).css({ 'z-index' : '999' }); }); // Add smooth dropdown effect jQuery("header .header-links li").hover(function(){ parentWidth = jQuery(this).width(); // Offset mega menu if(jQuery(this).hasClass('header-thinkupmega')) { jQuery(this).find('ul').addClass( 'header-thinkupmegachild' ); // Assign width to mega menu children megaColumnCount = jQuery(this).children( "ul" ).children( "li" ).length; megaColumnWidth = 100 / megaColumnCount; jQuery(this).children( "ul" ).children( "li" ).outerWidth( megaColumnWidth + "%" ); // Assign height to mega menu children megaColumnHeight = jQuery(this).children( "ul" ).height(); jQuery(this).children( "ul" ).children( "li" ).outerHeight( megaColumnHeight ); } // Prevent sub menus of mega menu from opening / closing if( ! jQuery(this).parent().hasClass('header-thinkupmegachild')) { jQuery(this).find('ul:first').css({visibility: "visible",display: "none","min-width": parentWidth}).slideToggle(400); } },function(){ jQuery(this).find('ul:first').css({visibility: "hidden"}); }); } jQuery(document).ready(function(){ mainmenu(); }); // ---------------------------------------------------------------------------------- // PRE HEADER MENU - ADD "active" CLASS TO "#pre-header-search" WHEN INPUT IS FOCUSED // ---------------------------------------------------------------------------------- jQuery(document).ready(function(){ jQuery( '#pre-header-search .search' ).focusin(function() { jQuery( '#pre-header-search' ).addClass( 'active' ); }); jQuery( '#pre-header-search .search' ).focusout(function() { jQuery( '#pre-header-search' ).removeClass( 'active' ); }); }); // ---------------------------------------------------------------------------------- // STICKY HEADER - ONLY ON SCREENS SMALLER THAN 768px // ---------------------------------------------------------------------------------- jQuery(window).load(function(){ // Trigger sticky header on devices wider than 768px if ( jQuery(window).width() > 768 && jQuery( 'body' ).hasClass( 'header-sticky' ) ) { // Resize on scroll jQuery(window).scroll(function() { // Assign header height and position variables var siteheader_height = jQuery( '#site-header' ).height(); var preheader_height = jQuery( '#pre-header' ).height(); var header_height = jQuery( '#header' ).height(); var header_sticky_offset = jQuery( '#header-sticky' ).offset(); // Activate sticky header 100px after header is cleared if ( !jQuery( 'body' ).hasClass( 'header-below' ) ) { if ( header_sticky_offset.top > preheader_height + header_height + 100 ) { jQuery( 'body' ).addClass( 'header-sticky-active' ); } else { jQuery( 'body' ).removeClass( 'header-sticky-active' ); } } else { if ( header_sticky_offset.top > siteheader_height + 100 ) { jQuery( 'body' ).addClass( 'header-sticky-active' ); } else { jQuery( 'body' ).removeClass( 'header-sticky-active' ); } } }); } }); // ---------------------------------------------------------------------------------- // FLUID MEDIA SIZES (Modified from http://bavotasan.com/2012/better-way-to-resize-video-using-jquery) // ---------------------------------------------------------------------------------- // Videos jQuery(document).ready(function() { /* Supported Platforms */ var all_videos = jQuery( 'iframe[src*="//player.vimeo.com"], iframe[src*="//www.youtube.com"], iframe[src*="//blip.tv"], iframe[src*="//www.slideshare.net"], iframe[src*="//www.scribd.com"], iframe[src*="//revision3.com"], iframe[src*="//www.hulu.com"], iframe[src*="//www.funnyordie.com"], iframe[src*="//www.dailymotion.com"], iframe[src*="//maps.google.com"], embed[src*="//v.wordpress.com"], object, embed' ); all_videos.each(function() { var el = jQuery(this); el .attr( 'data-aspectRatio', 360 / 640 ) .attr( 'data-oldWidth', el.width() ); } ); jQuery(document).ready(function() { all_videos.each( function() { var el = jQuery(this), newWidth = el.parents().width(), oldWidth = el.attr( 'data-oldWidth' ); ratioHeight = el.height() / el.outerHeight(), el .removeAttr( 'height' ) .removeAttr( 'width' ) .width( newWidth * ratioHeight ) .outerHeight( newWidth * el.attr( 'data-aspectRatio' ) ); }); }).resize(); jQuery(window) .resize( function() { all_videos.each( function() { var el = jQuery(this), newWidth = el.parents().width(), oldWidth = el.attr( 'data-oldWidth' ); ratioHeight = el.height() / el.outerHeight(), el .removeAttr( 'height' ) .removeAttr( 'width' ) .width( newWidth * ratioHeight ) .outerHeight( newWidth * el.attr( 'data-aspectRatio' ) ); }); }).resize(); }); // SoundCloud jQuery(document).ready(function() { // Supported Platforms var all_sounds = jQuery( 'iframe[src^="http://w.soundcloud.com"]' ); all_sounds.each(function() { var el = jQuery(this); el .attr( 'data-aspectRatio', el.attr( 'height' ) / el.attr( 'width' ) ) .attr( 'data-oldWidth', el.width() ); }); jQuery(document).ready(function() { all_sounds.each( function() { var el = jQuery(this), newWidth = el.parents().width(), oldWidth = el.attr( 'data-oldWidth' ); el .removeAttr( 'width' ) .width( newWidth ) }); }).resize(); jQuery(window) .resize( function() { all_sounds.each( function() { var el = jQuery(this), newWidth = el.parents().width(), oldWidth = el.attr( 'data-oldWidth' ); el .removeAttr( 'width' ) .width( newWidth ) }); }).resize(); }); // ---------------------------------------------------------------------------------- // ADD PRETTYPHOTO TO PORTFOLIO PAGE // ---------------------------------------------------------------------------------- jQuery(document).ready(function() { jQuery('#container.portfolio-wrapper a').has('img.hover-zoom').addClass('prettyPhoto'); jQuery('#container.portfolio-wrapper a').has('img.hover-zoom').attr('rel','portfolio[gallery]'); jQuery('a.prettyPhoto').has('img').attr('rel','portfolio[gallery]'); jQuery('a.prettyPhoto').prettyPhoto(); }); // ---------------------------------------------------------------------------------- // ADD PRETTYPHOTO TO POST IMAGE PAGE // ---------------------------------------------------------------------------------- jQuery(document).ready(function() { jQuery('body.attachment .entry-attachment .attachment a').has('img').addClass('prettyPhoto'); jQuery('a.prettyPhoto').prettyPhoto(); }); // ---------------------------------------------------------------------------------- // ADD _BLANK TO OUTGOING LINKS // ---------------------------------------------------------------------------------- jQuery(document).ready(function(){ jQuery('.thinkup_widget_flickr a[href^="http://"], .thinkup_widget_flickr a[href^="https://"]').attr('target','_blank'); jQuery('.thinkup_widget_socialshare a[href^="http://"], .thinkup_widget_socialshare a[href^="https://"]').attr('target','_blank'); jQuery('.thinkup_widget_socialprofiles a[href^="http://"], .thinkup_widget_socialprofiles a[href^="https://"]').attr('target','_blank'); jQuery('#pre-header-social a[href^="http://"], #pre-header-social a[href^="https://"]').attr('target','_blank'); jQuery('#shareicons a[href^="http://"], #shareicons a[href^="https://"]').attr('target','_blank'); }); // ---------------------------------------------------------------------------------- // SHORTCODES // ---------------------------------------------------------------------------------- jQuery(window).load(function() { // Accordion - Fix Bootstrap Toggle Issue jQuery('.accordion-toggle').click(function() { if(jQuery(this).hasClass('collapsed')) { jQuery(this).closest('.accordion').find('.accordion-toggle').not(this).addClass('collapsed'); } }); // Divider - Scroll To Top jQuery('.backtotop').click(function(){ jQuery('html, body').animate({scrollTop:0}, 'slow'); }); // Tooltip - Activate Bootstrap jQuery('[data-tip]').each( function() {jQuery(this).tooltip({ placement: jQuery(this).data('tip') }); }); // Blog Post - Carousel (used for identifying if input variable is an integer function isNumber(n) { return !isNaN(parseFloat(n)) && isFinite(n); } // Blog Post - Activate CarouFredSel jQuery(window).bind( 'load resize', function() { jQuery( '.sc-carousel' ).each( function(i) { // Don't run caroufredsel code if the following classes are present. if ( jQuery( this ).hasClass( 'sc-postitem' ) || jQuery( this ).hasClass( 'sc-featured' ) || jQuery( this ).hasClass( 'sc-image' ) ) { return; }; var instanceID = 'sc-carousel-' + i; jQuery( this ).attr( 'id', instanceID ); jQuery( this ).children( 'ul').attr( 'id', instanceID + '-inner' ); var show = jQuery( '#' + instanceID + '.sc-carousel' ).data( 'show' ); var scroll = jQuery( '#' + instanceID + '.sc-carousel' ).data( 'scroll' ); var speed = jQuery( '#' + instanceID + '.sc-carousel' ).data( 'speed' ); var effect = jQuery( '#' + instanceID + '.sc-carousel' ).data( 'effect' ); if ( show == 0 || isNaN( show ) == true ) show = '3'; if ( scroll == 0 || isNaN( scroll ) == true ) scroll = '1'; if ( speed == 0 ) speed = '500'; if ( effect == 0 ) { effect = '"scroll"'; } else { effect = '"' + effect + '"'; } var showItems = show; var scrollItems = scroll; var speedItems = speed; var fxItems = effect; var width = jQuery(window).width(); if ( jQuery( 'body' ).hasClass( 'layout-responsive' ) ) { if(width <=685) { showItems = 2; if( scrollItems >= 2 ) { scrollItems = 2; } } if(width <=480) { showItems = 1; scrollItems = 1; } } // Apply carousel code if needed if ( jQuery( this ).find( '#' + instanceID + '-inner' ).length ) { jQuery( this ).find( '#' + instanceID + '-inner' ).carouFredSel({ width: '100%', items : { visible : showItems, minimum : 3, minimum : 3, start: 0 }, scroll : { items : scrollItems, fx : fxItems, easing : "swing", duration : speedItems, }, responsive : true, circular : true, infinite : false, auto : false, prev : { button : '#' + instanceID + ' .prev', key : 'left' }, next : { button : '#' + instanceID + ' .next', key : 'right' }, pagination : '#' + instanceID + ' .pagination', onCreate: function () { jQuery(window).bind("load resize", function() { // Set height to testimonial carousel elements - All parentWidthTestimonial = jQuery( '#' + instanceID + '.carousel-testimonial li').outerHeight(); jQuery( '#' + instanceID + '.carousel-testimonial' ).height( 'auto' ); jQuery( '#' + instanceID + '.carousel-testimonial .caroufredsel_wrapper' ).css( { 'height': parentWidthTestimonial } ); // Set height to testimonial carousel elements - Fix Style 1 parentWidthTestimonial_1 = jQuery( '#' + instanceID + '.carousel-testimonial.style1 .caroufredsel_wrapper').outerHeight(); parentWidthTestimonial_2 = jQuery( '#' + instanceID + '.carousel-testimonial.style1 .sc-carousel-thumbs').outerHeight(); jQuery( '#' + instanceID + '.carousel-testimonial.style1' ).height( parentWidthTestimonial_1 + parentWidthTestimonial_2 ); jQuery( '#' + instanceID + '.carousel-testimonial.style1 .sc-carousel-thumbs' ).parent().height( parentWidthTestimonial_2 ); }); } }); } // Used for adding thumbnails to slider - Currently only for Testimonials slider if ( jQuery( this ).find('.sc-carousel-thumbs').length ) { jQuery( this ).find('.sc-carousel-thumbs').carouFredSel({ responsive: true, circular: false, infinite: false, auto: false, prev: '#prev', next: '#next', items: { visible: { min: 2, max: 6 }, width: 150, height: 70 } }); } jQuery( this ).find('.sc-carousel-thumbs a').click(function() { jQuery('#' + instanceID + '-inner').trigger('slideTo', '#' + this.href.split('#').pop() ); jQuery('.sc-carousel-thumbs a').removeClass('selected'); jQuery( this ).addClass('selected'); return false; }); // Set carousel container height parentHeight = jQuery( '#' + instanceID + ' li').height(); jQuery( '#' + instanceID + ' li' ).each(function() { var elementHeight = jQuery(this).height(); parentHeight = elementHeight > parentHeight ? elementHeight : parentHeight; }); // Add addition height if carousel thumbnails are showing if( jQuery( '#' + instanceID ).closest('.sc-carousel').find('.sc-carousel-thumbs').length > 0 ) { parentHeightThumb = parentHeight + jQuery( '#' + instanceID ).closest('.sc-carousel').find('.sc-carousel-thumbs').height(); } else { parentHeightThumb = parentHeight; } // Assign height to unique carousel ID (Max used to ensure thumbnail carousel displays correctly) jQuery( '#' + instanceID ).height( Math.max( parentHeight, parentHeightThumb ) ); jQuery( '#' + instanceID + '-inner' ).height( parentHeight ); jQuery( '#' + instanceID + '-inner' ).parent().height( parentHeight ); // Set carousel container height to auto if iframe exists in featured images if ( jQuery( '#' + instanceID + ' iframe').length > 0 ) { jQuery( '#' + instanceID ).addClass('carousel-iframe'); } }); }).resize(); }); jQuery(document).ready(function() { // Make slider full width if specified jQuery( '.rslides-sc' ).each(function( index, element ){ jQuery( element ).attr( 'id', 'thinkupbuilder-sliderimage-' + index ); // Collect slider parameter values var wide = jQuery( element ).data( 'wide' ); // Format row section for full-screen slider if ( wide == 'on' ) { jQuery( element ).closest( '.panel-grid' ).css( 'padding', 0 ); jQuery( element ).closest( '.panel-grid-core' ).css( 'margin', 0 ).css( 'maxWidth', '100%' ); jQuery( element ).closest( '.panel-grid-cell' ).css( 'padding', 0 ); } }); // Make ThinkUpSlider shortcode full width if specified jQuery( '.thinkupslider-sc' ).each(function( index, element ){ jQuery( element ).attr( 'id', 'thinkupbuilder-thinkupsliderimage-' + index ); // Collect slider parameter values var wide = jQuery( element ).data( 'wide' ); // Format row section for full-screen slider if ( wide == 'on' ) { jQuery( element ).closest( '.panel-grid' ).css( 'padding', 0 ); jQuery( element ).closest( '.panel-grid-core' ).css( 'margin', 0 ).css( 'maxWidth', '100%' ); jQuery( element ).closest( '.panel-grid-cell' ).css( 'padding', 0 ); } }); // Make image grid full width if specified jQuery( '.sc-grid ul' ).each(function( index, element ){ // Collect slider parameter values var wide = jQuery( element ).data( 'wide' ); // Format row section for full-screen slider if ( wide == 'on' ) { jQuery( element ).closest( '.panel-grid' ).css( 'padding', 0 ); jQuery( element ).closest( '.panel-grid-core' ).css( 'margin', 0 ).css( 'maxWidth', '100%' ); jQuery( element ).closest( '.panel-grid-cell' ).css( 'padding', 0 ); } }); }); // ---------------------------------------------------------------------------------- // HEADER SEARCH // ---------------------------------------------------------------------------------- jQuery(document).ready(function() { jQuery('#header-search a').click(function() { if ( ! jQuery( '#header-search' ).hasClass( 'active' ) ) { jQuery( '#header-search' ).addClass( 'active' ); } else { jQuery( '#header-search' ).removeClass( 'active' ); } }); }); // ---------------------------------------------------------------------------------- // SCROLL TO TOP BUTTON // ---------------------------------------------------------------------------------- jQuery(document).ready(function() { if ( jQuery( 'body' ).hasClass( 'scrollup-on' ) ) { (function($) { $(function () { $.scrollUp({ scrollName: 'scrollUp', // Element ID scrollText: '', // Text for element, can contain HTML }); }); } (jQuery) ); } }); // ---------------------------------------------------------------------------------- // SUB-FOOTER WIDGETS - CLOSE BUTTON // ---------------------------------------------------------------------------------- // Sub-Footer Widget - Close Button jQuery('#sub-footer-close-core').click(function() { if(jQuery( this ).hasClass('collapsed')) { jQuery( this ).removeClass('collapsed'); jQuery( '#sub-footer-widgets' ).removeClass('collapsed'); } else { jQuery( this ).addClass('collapsed'); jQuery( '#sub-footer-widgets' ).addClass('collapsed'); } }); // ---------------------------------------------------------------------------------- // SLIDER ICON - SMOOTH SCROLL // ---------------------------------------------------------------------------------- jQuery(document).ready(function (){ // Add #thinkupslider-after if ( jQuery( '.featured-icon' ) ) { jQuery( '#slider' ).after( '<div id="thinkupslider-after"></div>' ); } // Scroll To #thinkupslider-after jQuery('.featured-icon a').click(function(e){ e.preventDefault(); jQuery('html, body').animate( { scrollTop: jQuery( '#thinkupslider-after' ).offset().top }, 1000 ); }); }); // ---------------------------------------------------------------------------------- // WOOCOMMERCE - SOCIAL SHARING // ---------------------------------------------------------------------------------- jQuery(document).ready(function (){ // Add active class to social sharing button jQuery('.woo-share').click(function(e){ if ( jQuery( this ).hasClass( 'active' ) ) { jQuery( this ).removeClass( 'active' ); jQuery( this ).closest( '.woo-meta' ).find( '.woo-meta-social' ).removeClass( 'active' ); } else { jQuery( this ).addClass( 'active' ); jQuery( this ).closest( '.woo-meta' ).find( '.woo-meta-social' ).addClass( 'active' ); } }); });