Fixes #7413; isEmptyObject() check to see if obj passes isPlainObject

This commit is contained in:
rwldrn 2010-11-09 16:14:11 -05:00
parent a64dc04050
commit fc563cc42a
2 changed files with 17 additions and 4 deletions

View file

@ -532,6 +532,12 @@ jQuery.extend({
},
isEmptyObject: function( obj ) {
// Fixes #7413 Check to see if obj passes isPlainObject
if ( !jQuery.isPlainObject( obj ) ) {
return false;
}
for ( var name in obj ) {
return false;
}