aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/traversing.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/traversing.js b/src/traversing.js
index 583a303d6..92f58ba9c 100644
--- a/src/traversing.js
+++ b/src/traversing.js
@@ -68,9 +68,9 @@ jQuery.fn.extend({
});
},
- add: function( selector ) {
+ add: function( selector, context ) {
var set = typeof selector === "string" ?
- jQuery( selector ) :
+ jQuery( selector, context || this.context ) :
jQuery.makeArray( selector ),
all = jQuery.merge( this.get(), set );
@@ -185,4 +185,4 @@ jQuery.extend({
return r;
}
-}); \ No newline at end of file
+});