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