Fix JSHint error. props atimmer. see #26061.

git-svn-id: https://develop.svn.wordpress.org/trunk@26632 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-12-04 20:17:52 +00:00
parent 98fe4a5aed
commit 3d1bcce2ff

View File

@ -253,10 +253,6 @@ window.wp = window.wp || {};
return this;
},
isEqual: function( to ) {
return this._eq( this._value, to, [], [] );
},
/**
* Internal recursive comparison function for `isEqual`.
* Copied from Underscore.js.
@ -321,8 +317,12 @@ window.wp = window.wp || {};
aStack.pop();
bStack.pop();
return result;
}
},
/* jshint ignore:end */
isEqual: function( to ) {
return this._eq( this._value, to, [], [] );
}
});
/* =====================================================================