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