Skip to content

Commit d2436df

Browse files
authored
Core: Drop the root parameter of jQuery.fn.init
The third parameter of `jQuery.fn.init` - `root` - was just needed to support `jQuery.sub`. Since this API has been removed in jQuery 1.9.0 and Migrate 3.x is not filling it in, this parameter is no longer needed. This parameter has never been documented but it's safer to remove it in a major update. Closes gh-5096
1 parent 8cf39b7 commit d2436df

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

src/core/init.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@ var rootjQuery,
1515
// Shortcut simple #id case for speed
1616
rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
1717

18-
init = jQuery.fn.init = function( selector, context, root ) {
18+
init = jQuery.fn.init = function( selector, context ) {
1919
var match, elem;
2020

2121
// HANDLE: $(""), $(null), $(undefined), $(false)
2222
if ( !selector ) {
2323
return this;
2424
}
2525

26-
// Method init() accepts an alternate rootjQuery
27-
// so migrate can support jQuery.sub (gh-2101)
28-
root = root || rootjQuery;
29-
3026
// HANDLE: $(DOMElement)
3127
if ( selector.nodeType ) {
3228
this[ 0 ] = selector;
@@ -36,8 +32,8 @@ var rootjQuery,
3632
// HANDLE: $(function)
3733
// Shortcut for document ready
3834
} else if ( typeof selector === "function" ) {
39-
return root.ready !== undefined ?
40-
root.ready( selector ) :
35+
return rootjQuery.ready !== undefined ?
36+
rootjQuery.ready( selector ) :
4137

4238
// Execute immediately if ready is not present
4339
selector( jQuery );
@@ -108,7 +104,7 @@ var rootjQuery,
108104

109105
// HANDLE: $(expr) & $(expr, $(...))
110106
} else if ( !context || context.jquery ) {
111-
return ( context || root ).find( selector );
107+
return ( context || rootjQuery ).find( selector );
112108

113109
// HANDLE: $(expr, context)
114110
// (which is just equivalent to: $(context).find(expr)

0 commit comments

Comments
 (0)