Changeset 48106
- Timestamp:
- 06/20/2020 12:13:58 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/vendor/tinymce/plugins/wptextpattern/plugin.js
r47122 r48106 121 121 var zero; 122 122 123 // We need a non 123 // We need a non-empty text node with an offset greater than zero. 124 124 if ( ! node || node.nodeType !== 3 || ! node.data.length || ! offset ) { 125 125 return; -
trunk/src/js/_enqueues/wp/api.js
r48104 r48106 249 249 if ( _.includes( routeEndpoint.methods, 'POST' ) || _.includes( routeEndpoint.methods, 'PUT' ) ) { 250 250 251 // Add any non 251 // Add any non-empty args, merging them into the args object. 252 252 if ( ! _.isEmpty( routeEndpoint.args ) ) { 253 253 … … 266 266 if ( _.includes( routeEndpoint.methods, 'GET' ) ) { 267 267 268 // Add any non 268 // Add any non-empty args, merging them into the defaults object. 269 269 if ( ! _.isEmpty( routeEndpoint.args ) ) { 270 270 … … 328 328 var theField = field || 'date'; 329 329 330 // Don't alter non 330 // Don't alter non-parsable date fields. 331 331 if ( _.indexOf( parseableDates, theField ) < 0 ) { 332 332 return false; … … 349 349 theISODate = this.get( theField ); 350 350 351 // Only get date fields and non 351 // Only get date fields and non-null values. 352 352 if ( _.indexOf( parseableDates, theField ) < 0 || _.isNull( theISODate ) ) { 353 353 return false; -
trunk/src/js/_enqueues/wp/theme.js
r48037 r48106 271 271 isPaginated = _.has( request, 'page' ); 272 272 273 // Reset the internal api page counter for non 273 // Reset the internal api page counter for non-paginated queries. 274 274 if ( ! isPaginated ) { 275 275 this.currentQuery.page = 1; -
trunk/src/wp-content/themes/twentynineteen/inc/template-functions.php
r47550 r48106 20 20 $classes[] = 'singular'; 21 21 } else { 22 // Adds `hfeed` to non 22 // Adds `hfeed` to non-singular pages. 23 23 $classes[] = 'hfeed'; 24 24 } -
trunk/src/wp-content/themes/twentytwenty/assets/js/index.js
r47784 r48106 76 76 init: function() { 77 77 var matchMedia = function() { 78 // Include the 'heartz' as a way to have a non 78 // Include the 'heartz' as a way to have a non-matching MQ to help terminate the join. See <https://git.io/vznFH>. 79 79 var prefixes = [ '-webkit-', '-moz-', '-o-', '-ms-' ]; 80 80 var query = [ '(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')' ].join( '' ); -
trunk/src/wp-includes/meta.php
r48100 r48106 1465 1465 1466 1466 /** 1467 * Filters the object subtype identifier for a non 1467 * Filters the object subtype identifier for a non-standard object type. 1468 1468 * 1469 1469 * The dynamic portion of the hook, `$object_type`, refers to the object -
trunk/tests/phpunit/tests/rest-api/rest-block-renderer-controller.php
r48069 r48106 48 48 49 49 /** 50 * Non 50 * Non-dynamic block name. 51 51 * 52 52 * @since 5.5.0
Note: See TracChangeset
for help on using the changeset viewer.