Skip to content

Commit

Permalink
Recompile WordPress
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Jan 4, 2024
1 parent a38b64a commit 82a7ab9
Show file tree
Hide file tree
Showing 11 changed files with 75 additions and 75 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ jQuery( function($) {
}

/**
* When the dragging stopped make sure we return focus and do a sanity check on the height.
* When the dragging stopped make sure we return focus and do a confidence check on the height.
*/
function endDrag() {
var height, toolbarHeight;
Expand All @@ -1198,7 +1198,7 @@ jQuery( function($) {

$document.off( '.wp-editor-resize' );

// Sanity check: normalize height to stay within acceptable ranges.
// Confidence check: normalize height to stay within acceptable ranges.
if ( height && height > 50 && height < 5000 ) {
setUserSetting( 'ed_size', height );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ themes.view.Themes = wp.Backbone.View.extend({
// Find the next model within the collection.
nextModel = self.collection.at( self.collection.indexOf( model ) + 1 );

// Sanity check which also serves as a boundary test.
// Confidence check which also serves as a boundary test.
if ( nextModel !== undefined ) {

// We have a new theme...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
// Get accessible colors for the defined background-color and hue.
colors = twentyTwentyColor( backgroundColor, accentHue );

// Sanity check.
// Confidence check.
if ( colors.getAccentColor() && 'function' === typeof colors.getAccentColor().toCSS ) {
// Update the value for this context.
value[ context ] = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function getCSSSize(size) {
if (/^[0-9]+$/.test(size)) {
size += 'px';
}
// Sanity check, IE doesn't like broken values
// Confidence check, IE doesn't like broken values
else if (!(/^[0-9\.]+(px|%|in|cm|mm|em|ex|pt|pc)$/i.test(size))) {
return "";
}
Expand Down
18 changes: 9 additions & 9 deletions packages/playground/wordpress/src/wordpress/wp-6.1.data

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions packages/playground/wordpress/src/wordpress/wp-6.2.data

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions packages/playground/wordpress/src/wordpress/wp-6.3.data

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions packages/playground/wordpress/src/wordpress/wp-6.4.data

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions packages/playground/wordpress/src/wordpress/wp-beta.data

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions packages/playground/wordpress/src/wordpress/wp-nightly.data

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/playground/wordpress/src/wordpress/wp-nightly.js

Large diffs are not rendered by default.

0 comments on commit 82a7ab9

Please sign in to comment.