File: /var/www/html/ielts-store/wp-content/themes/oceanwp/assets/js/core/parallaxFooter.js
var $j = jQuery.noConflict();
$j( document ).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 );
}
}