( selector, context )
| 108 | |
| 109 | // Define a local copy of jQuery |
| 110 | jQuery = function( selector, context ) { |
| 111 | |
| 112 | // The jQuery object is actually just the init constructor 'enhanced' |
| 113 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 114 | return new jQuery.fn.init( selector, context ); |
| 115 | }; |
| 116 | |
| 117 | jQuery.fn = jQuery.prototype = { |
| 118 |
no outgoing calls
no test coverage detected