Switched jQuery() to represent jQuery([]) instead of jQuery(document).
This commit is contained in:
parent
b846ad4ca0
commit
04524287d3
2 changed files with 2 additions and 4 deletions
|
@ -1,9 +1,7 @@
|
|||
// Define a local copy of jQuery
|
||||
var jQuery = function( selector, context ) {
|
||||
// The jQuery object is actually just the init constructor 'enhanced'
|
||||
return arguments.length === 0 ?
|
||||
rootjQuery :
|
||||
new jQuery.fn.init( selector, context );
|
||||
return new jQuery.fn.init( selector, context );
|
||||
},
|
||||
|
||||
// Map over jQuery in case of overwrite
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue