EduardET

Untitled

May 28th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ( function( $ ) {
  2.     $( document ).ready( function() {
  3.         var wpadminbar = $( '#wpadminbar' ),
  4.             topBar = $( '#top-header' ),
  5.             headerBar = $( '#main-header' ),
  6.             footer = $( '#main-footer' ),
  7.             topHeight = 0,
  8.             footerHeight = 0;
  9.  
  10.         if ( wpadminbar.length ) {
  11.             topHeight = topHeight + wpadminbar.height();
  12.         };
  13.         if ( topBar.length ) {
  14.             topHeight = topHeight + topBar.height();
  15.         }
  16.         if ( headerBar.length ) {
  17.             topHeight = topHeight + headerBar.height();
  18.         }
  19.         if ( footer.length ) {
  20.             footerHeight = footerHeight + footer.height();
  21.         }
  22.  
  23.         if ($('body').hasClass('et_pb_pagebuilder_layout')) {
  24.             $( "#sticker" ).sticky( {
  25.                 topSpacing: topHeight,
  26.                 bottomSpacing: footerHeight
  27.             } );
  28.         } else {
  29.             $( "#bloomwidget-7" ).sticky( {
  30.                 topSpacing: topHeight,
  31.                 bottomSpacing: footerHeight
  32.             } );
  33.         }
  34.  
  35.     } );
  36. } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment