Make WordPress Core

Ticket #26061: 26061.jshint.patch

File 26061.jshint.patch, 760 bytes (added by atimmer, 11 years ago)
  • src/wp-includes/js/customize-base.js

     
    253253                        return this;
    254254                },
    255255
    256                 isEqual: function( to ) {
    257                         return this._eq( this._value, to, [], [] );
    258                 },
    259 
    260256                /**
    261257                 * Internal recursive comparison function for `isEqual`.
    262258                 * Copied from Underscore.js.
     
    321317                        aStack.pop();
    322318                        bStack.pop();
    323319                        return result;
     320                },
     321                /* jshint ignore:end */
     322
     323                isEqual: function( to ) {
     324                        return this._eq( this._value, to, [], [] );
    324325                }
    325                 /* jshint ignore:end */
    326326        });
    327327
    328328        /* =====================================================================