Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | No ticket. Restore checking individual src/**/*.js files by jsHint. | Michał Gołębiowski | 2013-09-06 | 1 | -1/+1 |
| | |||||
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 1 | -6/+1 |
| | |||||
* | Support CommonJS environments by accentuating the need for a window with a ↵ | Timmy Willison | 2013-07-04 | 1 | -1/+5 |
| | | | | document. Fixes #13768. | ||||
* | Fixes #13760. Pass window, not this to the main IIFE. Closes gh-1238 | Michał Gołębiowski | 2013-04-10 | 1 | -1/+1 |
| | |||||
* | Support node-like module loaders. Closes gh-1103 | isaacs | 2013-02-20 | 1 | -1/+1 |
| | |||||
* | Landing pull request 586. Create exports.js for exporting jQuery to window ↵ | jrburke | 2011-11-14 | 1 | -2/+1 |
| | | | | | | | | and AMD. Fixes #10687. More Details: - https://github.com/jquery/jquery/pull/586 - http://bugs.jquery.com/ticket/10687 | ||||
* | Cleanup spacing in outro.js. Fixes #10601 | Rick Waldron | 2011-10-27 | 1 | -1/+1 |
| | |||||
* | Landing pull request 410. Moves jQuery attachment comment to outro. | Greg Hazel | 2011-06-14 | 1 | -0/+1 |
| | | | | | More Details: - https://github.com/jquery/jquery/pull/410 | ||||
* | Moved jQuery global leak to end of file so accidental gEBCN overrides in ↵ | Alex Sexton | 2011-01-23 | 1 | -0/+1 |
| | | | | prototype don't get caught up in confusion. Fixed tests to reference jQuery variable instead of $ (best practice). Fixes #8033 | ||||
* | Made it so that you no longer need to build jQuery in order to run the test ↵ | jeresig | 2010-03-23 | 1 | -3/+0 |
| | | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least). | ||||
* | Moved exposing window.jQuery and window.$ to the end of the jQuery file ↵ | John Resig | 2009-08-10 | 1 | -0/+3 |
| | | | | (helps some compatibility cases with older version of Prototype). Fixes ticket #4834. | ||||
* | Did some light reordering of the jQuery definition. Moved window and ↵ | John Resig | 2009-05-20 | 1 | -1/+1 |
| | | | | undefined to exist in intro/outro. | ||||
* | Fix for a selector speed regression (calling a simple selector many times ↵ | John Resig | 2007-08-21 | 1 | -1/+1 |
| | | | | | | | | | | resulted in a significant speed down). This has been fixed by breaking the RegExps out into the global scope. This required that a closure be implemented around the full jQuery script (which is now the case). Some simple changes were made in addition to the RegExp one, allowing for some greater flexibility on our part - and hopefully better compression. Speed results: http://dev.jquery.com/~john/ticket/1351/ vs. http://dev.jquery.com/~john/ticket/1351/113.html vs. http://dev.jquery.com/~john/ticket/1351/112.html | ||||
* | Removed unnecessary uses of typeof undefined. | John Resig | 2007-01-12 | 1 | -1/+1 |
| | |||||
* | Fixed a bunch of endline issues.1.0.2 | John Resig | 2006-10-10 | 1 | -1/+1 |
| | |||||
* | Added linebreak for better readability when adding more files | Jörn Zaefferer | 2006-09-23 | 1 | -1/+1 |
| | |||||
* | Fixed bug #147, required some (ugly) modifications: changed function ↵ | Jörn Zaefferer | 2006-09-15 | 1 | -0/+1 |
jQuery(...){} to jQuery = function(...){}, necessary because IE parses all function name(){} declarations before executing inline code; added intro.js and outro.js to both build.xml (tested) and Makefile (not tested) to include "if(typeof window.jQuery == "undefined") { ... } |