????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/assets/js/core/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/assets/js/core/parallaxFooter.js

var $j = jQuery.noConflict();

$j( document ).on( 'ready', function() {
	"use strict";
	// Parallax footer
	oceanwpParallaxFooter();
} );

$j( window ).on( 'resize', function() {
	"use strict";
	// Parallax footer
	oceanwpParallaxFooter();
} );

/* ==============================================
PARALLAX FOOTER
============================================== */
function oceanwpParallaxFooter() {
	"use strict"

	// Needed timeout for dynamic parallax content
	if ( $j( 'body' ).hasClass( 'has-parallax-footer' ) ) {

		setTimeout( function() {
			$j( '#main' ).css( 'margin-bottom', $j( '.parallax-footer' ).outerHeight() );
		}, 1 );

	}

}