(selector, context)
| 144 | rhtmlSuffix = /HTML$/i, |
| 145 | // Define a local copy of jQuery |
| 146 | jQuery = function (selector, context) { |
| 147 | // The jQuery object is actually just the init constructor 'enhanced' |
| 148 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 149 | return new jQuery.fn.init(selector, context); |
| 150 | }; |
| 151 | |
| 152 | jQuery.fn = jQuery.prototype = { |
| 153 | // The current version of jQuery being used |
no outgoing calls
no test coverage detected