From: John Resig Date: Mon, 27 Jul 2009 20:48:42 +0000 (+0000) Subject: Fix some missing braces in core.js. X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=b7a3b220a8a2b5b0378c9f176ca5ae0f786a6fcf;p=jquery.git Fix some missing braces in core.js. --- diff --git a/src/core.js b/src/core.js index 5f2cf20..35cac37 100644 --- a/src/core.js +++ b/src/core.js @@ -47,7 +47,9 @@ jQuery.fn = jQuery.prototype = { var match, elem, ret; // Handle $(""), $(null), or $(undefined) - if ( !selector ) return this; + if ( !selector ) { + return this; + } // Handle $(DOMElement) if ( selector.nodeType ) { @@ -75,7 +77,9 @@ jQuery.fn = jQuery.prototype = { if ( elem ) { // Handle the case where IE and Opera return items // by name instead of ID - if ( elem.id !== match[2] ) return rootjQuery.find( selector ); + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } // Otherwise, we inject the element directly into the jQuery object this.length++;