From ed1e3f7e0501be92411bb7d9fd6c25ab1e81cc73 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Wed, 2 May 2007 02:41:57 +0000 Subject: [PATCH] removing the context and selector properties that I left in jQuery.prototype.init --- src/jquery/jquery.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 76ef152..ebe1f8c 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -166,12 +166,8 @@ jQuery.fn = jQuery.prototype = { a = jQuery.clean( [ m[1] ] ); // HANDLE: $(expr) - else { - var r = new jQuery( c ).find( a ); - r.selector = a; - r.context = c; - return r; - } + else + return new jQuery( c ).find( a ); } return this.setArray( -- 1.7.10.4