( selector, context )
| 92 | |
| 93 | // Define a local copy of jQuery |
| 94 | jQuery = function( selector, context ) { |
| 95 | |
| 96 | // The jQuery object is actually just the init constructor 'enhanced' |
| 97 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 98 | return new jQuery.fn.init( selector, context ); |
| 99 | }, |
| 100 | |
| 101 | // Support: Android <=4.0 only |
| 102 | // Make sure we trim BOM and NBSP |
no outgoing calls
no test coverage detected
searching dependent graphs…