( selector, context )
| 15 | |
| 16 | // Define a local copy of jQuery |
| 17 | jQuery = function( selector, context ) { |
| 18 | // The jQuery object is actually just the init constructor 'enhanced' |
| 19 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 20 | return new jQuery.fn.init( selector, context ); |
| 21 | }, |
| 22 | |
| 23 | // Support: Android<4.1, IE<9 |
| 24 | // Make sure we trim BOM and NBSP |
no outgoing calls
no test coverage detected
searching dependent graphs…