From 57fe32e081491c365d87d814b51f297ff2a0495c Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Sun, 17 Jul 2016 21:13:35 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@38083 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentythirteen/functions.php | 2 +- src/wp-content/themes/twentythirteen/js/functions.js | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/wp-content/themes/twentythirteen/functions.php b/src/wp-content/themes/twentythirteen/functions.php index a2337b2a43..83993ced27 100644 --- a/src/wp-content/themes/twentythirteen/functions.php +++ b/src/wp-content/themes/twentythirteen/functions.php @@ -173,7 +173,7 @@ function twentythirteen_scripts_styles() { wp_enqueue_script( 'jquery-masonry' ); // 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. wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null ); diff --git a/src/wp-content/themes/twentythirteen/js/functions.js b/src/wp-content/themes/twentythirteen/js/functions.js index e0d759b9cb..88e8d0b5a7 100644 --- a/src/wp-content/themes/twentythirteen/js/functions.js +++ b/src/wp-content/themes/twentythirteen/js/functions.js @@ -119,9 +119,13 @@ /** * Arranges footer widgets vertically. */ - if ( $.isFunction( $.fn.masonry ) ) { - var columnWidth = body.is( '.sidebar' ) ? 228 : 245, - widgetArea = $( '#secondary .widget-area' ); + $( function() { + var columnWidth, widgetArea; + if ( ! $.isFunction( $.fn.masonry ) ) { + return; + } + columnWidth = body.is( '.sidebar' ) ? 228 : 245; + widgetArea = $( '#secondary .widget-area' ); widgetArea.masonry( { itemSelector: '.widget', @@ -157,5 +161,5 @@ } } ); } - } + } ); } )( jQuery ); \ No newline at end of file