( selector, context )
| 31 | |
| 32 | // Define a local copy of jQuery |
| 33 | jQuery = function( selector, context ) { |
| 34 | |
| 35 | // The jQuery object is actually just the init constructor 'enhanced' |
| 36 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 37 | return new jQuery.fn.init( selector, context ); |
| 38 | }, |
| 39 | |
| 40 | // Support: Android <=4.0 only |
| 41 | // Make sure we trim BOM and NBSP |
no outgoing calls
no test coverage detected
searching dependent graphs…