Twenty Thirteen: Fix selective refresh of Masonry-laid out widgets by deferring initialization until DOM ready.

This ensures that the `wp.customize.selectiveRefresh` object will be available when in the Customizer preview.

Fixes #37390.
Props westonruter, celloexpressions.

Built from https://develop.svn.wordpress.org/trunk@38083


git-svn-id: http://core.svn.wordpress.org/trunk@38024 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Weston Ruter 2016-07-17 21:14:29 +00:00
parent fd2d9ef63b
commit 36e46af382
3 changed files with 10 additions and 6 deletions

View File

@ -173,7 +173,7 @@ function twentythirteen_scripts_styles() {
wp_enqueue_script( 'jquery-masonry' ); wp_enqueue_script( 'jquery-masonry' );
// Loads JavaScript file with functionality specific to Twenty Thirteen. // Loads JavaScript file with functionality specific to Twenty Thirteen.
wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150330', true ); wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20160717', true );
// Add Source Sans Pro and Bitter fonts, used in the main stylesheet. // Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null ); wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );

View File

@ -119,9 +119,13 @@
/** /**
* Arranges footer widgets vertically. * Arranges footer widgets vertically.
*/ */
if ( $.isFunction( $.fn.masonry ) ) { $( function() {
var columnWidth = body.is( '.sidebar' ) ? 228 : 245, var columnWidth, widgetArea;
widgetArea = $( '#secondary .widget-area' ); if ( ! $.isFunction( $.fn.masonry ) ) {
return;
}
columnWidth = body.is( '.sidebar' ) ? 228 : 245;
widgetArea = $( '#secondary .widget-area' );
widgetArea.masonry( { widgetArea.masonry( {
itemSelector: '.widget', itemSelector: '.widget',
@ -157,5 +161,5 @@
} }
} ); } );
} }
} } );
} )( jQuery ); } )( jQuery );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.6-beta3-38082'; $wp_version = '4.6-beta3-38083';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.