( selector, context )
| 19 | |
| 20 | // Define a local copy of jQuery |
| 21 | jQuery = function( selector, context ) { |
| 22 | |
| 23 | // The jQuery object is actually just the init constructor 'enhanced' |
| 24 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 25 | return new jQuery.fn.init( selector, context ); |
| 26 | }; |
| 27 | |
| 28 | jQuery.fn = jQuery.prototype = { |
| 29 |
no outgoing calls
no test coverage detected