( selector, context )
| 23 | |
| 24 | // Define a local copy of jQuery |
| 25 | var jQuery = function( selector, context ) { |
| 26 | // The jQuery object is actually just the init constructor 'enhanced' |
| 27 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 28 | }, |
| 29 | |
| 30 | // Map over jQuery in case of overwrite |
| 31 | _jQuery = window.jQuery, |
no outgoing calls
no test coverage detected