Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- (function( $ ) {
- $( document ).ready( function() {
- var galleryItem = $( '#nocontentblog article .entry-title' );
- 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( galleryItem );
- $( document ).ajaxSuccess( function() {
- setHeight( galleryItem );
- } );
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment