Code Duplication    Length = 7-7 lines in 2 locations

modules/infinite-scroll/themes/twentyeleven.php 1 location

@@ 29-35 (lines=7) @@
26
/**
27
 * Enqueue CSS stylesheet with theme styles for infinity.
28
 */
29
function jetpack_twentyeleven_infinite_scroll_enqueue_styles() {
30
	if ( wp_script_is( 'the-neverending-homepage' ) || class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
31
		$dep = wp_script_is( 'the-neverending-homepage' ) ? array( 'the-neverending-homepage' ) : array();
32
		// Add theme specific styles.
33
		wp_enqueue_style( 'infinity-twentyeleven', plugins_url( 'twentyeleven.css', __FILE__ ), $dep, '20121002' );
34
	}
35
}
36
add_action( 'wp_enqueue_scripts', 'jetpack_twentyeleven_infinite_scroll_enqueue_styles', 25 );
37
38
/**

modules/infinite-scroll/themes/twentytwelve.php 1 location

@@ 29-35 (lines=7) @@
26
/**
27
 * Enqueue CSS stylesheet with theme styles for infinity.
28
 */
29
function jetpack_twentytwelve_infinite_scroll_enqueue_styles() {
30
	if ( wp_script_is( 'the-neverending-homepage' ) || class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
31
		$dep = wp_script_is( 'the-neverending-homepage' ) ? array( 'the-neverending-homepage' ) : array();
32
		// Add theme specific styles.
33
		wp_enqueue_style( 'infinity-twentytwelve', plugins_url( 'twentytwelve.css', __FILE__ ), $dep, '20120817' );
34
	}
35
}
36
add_action( 'wp_enqueue_scripts', 'jetpack_twentytwelve_infinite_scroll_enqueue_styles', 25 );
37
38
/**