Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- var productImage = $( '.et_pb_tab_content .et_portfolio_image .et_pb_gallery_caption' );
- function setHeight( el ) {
- var maxHeight = 0;
- if ( el.length ) {
- el.each( function() {
- if ( $( this ).outerHeight() > maxHeight ) {
- maxHeight = $( this ).outerHeight();
- }
- } );
- el.css( 'min-height', maxHeight );
- }
- }
- setHeight( productImage );
- $( '.et_pb_tabs_controls li a' ).each( function() {
- $( this ).click( function() {
- setTimeout( function() {
- setHeight( productImage );
- }, 600 )
- } )
- } )
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment