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