( selector, context )
| 71 | |
| 72 | // Define a local copy of jQuery |
| 73 | jQuery = function( selector, context ) { |
| 74 | // The jQuery object is actually just the init constructor 'enhanced' |
| 75 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 76 | return new jQuery.fn.init( selector, context ); |
| 77 | }, |
| 78 | |
| 79 | // Support: Android<4.1 |
| 80 | // Make sure we trim BOM and NBSP |
no outgoing calls
no test coverage detected