( selector, context )
| 2 | |
| 3 | // Define a local copy of jQuery |
| 4 | var jQuery = function( selector, context ) { |
| 5 | // The jQuery object is actually just the init constructor 'enhanced' |
| 6 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 7 | }, |
| 8 | |
| 9 | // Map over jQuery in case of overwrite |
| 10 | _jQuery = window.jQuery, |
no outgoing calls
no test coverage detected