( selector, context )
| 74 | |
| 75 | // Define a local copy of jQuery |
| 76 | jQuery = function( selector, context ) { |
| 77 | // The jQuery object is actually just the init constructor 'enhanced' |
| 78 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 79 | return new jQuery.fn.init( selector, context ); |
| 80 | }, |
| 81 | |
| 82 | // Matches dashed string for camelizing |
| 83 | rmsPrefix = /^-ms-/, |
no outgoing calls
no test coverage detected
searching dependent graphs…