Fix JSHint error. props atimmer. see #26061.

Built from https://develop.svn.wordpress.org/trunk@26632


git-svn-id: http://core.svn.wordpress.org/trunk@26522 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-12-04 20:18:11 +00:00
parent 087289b6a4
commit 41b6bf211f
2 changed files with 6 additions and 6 deletions

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, [], [] );
}
});
/* =====================================================================

File diff suppressed because one or more lines are too long