Make WordPress Core

Ticket #38456: 38456.diff

File 38456.diff, 1.4 KB (added by Zuige, 8 years ago)
  • wp-includes/js/wp-api.js

    diff --git a/wp-includes/js/wp-api.js b/wp-includes/js/wp-api.js
    index 0bb5d2e..17d72af 100644
    a b  
    179179                               // Add any non empty args, merging them into the args object.
    180180                               if ( ! _.isEmpty( routeEndpoint.args ) ) {
    181181
    182                                        // Set as defauls if no args yet.
     182                                       // Set as default if no args yet.
    183183                                       if ( _.isEmpty( modelInstance.prototype.args ) ) {
    184184                                               modelInstance.prototype.args = routeEndpoint.args;
    185185                                       } else {
     
    196196                                       // Add any non empty args, merging them into the defaults object.
    197197                                       if ( ! _.isEmpty( routeEndpoint.args ) ) {
    198198
    199                                                // Set as defauls if no defaults yet.
     199                                               // Set as default if no defaults yet.
    200200                                               if ( _.isEmpty( modelInstance.prototype.options ) ) {
    201201                                                       modelInstance.prototype.options = routeEndpoint.args;
    202202                                               } else {