소스 검색

Illustratr: Replace window.load event with document.ready for functions that show hidden elements on the page, to help work around ads issue. See #108.

Laurel Fulford 7 년 전
부모
커밋
f14df964bc
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      illustratr/js/portfolio.js

+ 4 - 2
illustratr/js/portfolio.js

@@ -28,11 +28,9 @@
 				} );
 			}
 		} );
-
 	}
 
 	$( window ).load( function() {
-
 		/*
 		 * Wrap portfolio-featured-image in a div.
 		 */
@@ -42,6 +40,10 @@
 
 		calc();
 
+	} );
+
+	$( document ).ready( function() {
+
 		var portfolio_wrapper = $( '.portfolio-wrapper, .jetpack-portfolio-shortcode' );
 
 		portfolio_wrapper.imagesLoaded( function() {