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