( selector, context )
| 122 | |
| 123 | // Define a local copy of jQuery |
| 124 | jQuery = function( selector, context ) { |
| 125 | |
| 126 | // The jQuery object is actually just the init constructor 'enhanced' |
| 127 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 128 | return new jQuery.fn.init( selector, context ); |
| 129 | }; |
| 130 | |
| 131 | jQuery.fn = jQuery.prototype = { |
| 132 |
no outgoing calls
no test coverage detected