( selector, context )
| 155 | |
| 156 | // Define a local copy of jQuery |
| 157 | jQuery = function( selector, context ) { |
| 158 | |
| 159 | // The jQuery object is actually just the init constructor 'enhanced' |
| 160 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 161 | return new jQuery.fn.init( selector, context ); |
| 162 | }; |
| 163 | |
| 164 | jQuery.fn = jQuery.prototype = { |
| 165 |
no outgoing calls
no test coverage detected