Ticket #26061: 26061.jshint.patch
File 26061.jshint.patch, 760 bytes (added by , 11 years ago) |
---|
-
src/wp-includes/js/customize-base.js
253 253 return this; 254 254 }, 255 255 256 isEqual: function( to ) {257 return this._eq( this._value, to, [], [] );258 },259 260 256 /** 261 257 * Internal recursive comparison function for `isEqual`. 262 258 * Copied from Underscore.js. … … 321 317 aStack.pop(); 322 318 bStack.pop(); 323 319 return result; 320 }, 321 /* jshint ignore:end */ 322 323 isEqual: function( to ) { 324 return this._eq( this._value, to, [], [] ); 324 325 } 325 /* jshint ignore:end */326 326 }); 327 327 328 328 /* =====================================================================