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
This commit is contained in:
Andrea Fercia 2017-05-12 07:05:41 +00:00
parent 55b6ee7e56
commit 8a07db035d
2 changed files with 3 additions and 3 deletions

View File

@ -995,8 +995,8 @@ $document.ready( function() {
// Toggle the progress div visibility. // Toggle the progress div visibility.
$progressDiv.toggle(); $progressDiv.toggle();
// Toggle the Show Details button expanded state. // 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 // Fire a custom jQuery event at the end of window resize

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.