From 8a07db035df0452eead65ffa42158e6138d04f86 Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Fri, 12 May 2017 07:05:41 +0000 Subject: [PATCH] Add missing semicolons after [40646]. See #40453. Built from https://develop.svn.wordpress.org/trunk@40648 git-svn-id: http://core.svn.wordpress.org/trunk@40511 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/js/common.js | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/js/common.js b/wp-admin/js/common.js index 672836da36..930b659d62 100644 --- a/wp-admin/js/common.js +++ b/wp-admin/js/common.js @@ -995,8 +995,8 @@ $document.ready( function() { // Toggle the progress div visibility. $progressDiv.toggle(); // Toggle the Show Details button expanded state. - $( this ).attr( 'aria-expanded', $progressDiv.is( ':visible' ) ) - }) + $( this ).attr( 'aria-expanded', $progressDiv.is( ':visible' ) ); + }); }); // Fire a custom jQuery event at the end of window resize diff --git a/wp-includes/version.php b/wp-includes/version.php index 2f2a472f0e..9a553db20d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40647'; +$wp_version = '4.8-alpha-40648'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.