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