( selector, context )
| 329 | |
| 330 | // Define a local copy of jQuery |
| 331 | jQuery = function( selector, context ) { |
| 332 | |
| 333 | // The jQuery object is actually just the init constructor 'enhanced' |
| 334 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 335 | return new jQuery.fn.init( selector, context ); |
| 336 | }, |
| 337 | |
| 338 | // Support: Android<4.1, IE<9 |
| 339 | // Make sure we trim BOM and NBSP |
no outgoing calls
no test coverage detected