Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cache references to navigator and location. Fixes #6690. | John Resig | 2011-04-16 | 1 | -1/+3 |
| | |||||
* | Updating the year in the header. | jeresig | 2011-01-24 | 1 | -2/+2 |
| | |||||
* | Clean trailing whitespace from all files. | Colin Snover | 2010-12-30 | 1 | -1/+1 |
| | |||||
* | Re-work the document scoping. | jeresig | 2010-09-22 | 1 | -0/+2 |
| | |||||
* | Update the license URL in the header. | jeresig | 2010-01-25 | 1 | -1/+1 |
| | |||||
* | Update the copyright from 2009 to 2010. | John Resig | 2010-01-03 | 1 | -2/+2 |
| | |||||
* | Made a number of spacing changes to bring the code more-inline with the ↵ | jeresig | 2009-12-21 | 1 | -1/+1 |
| | | | | jQuery Core Style Guideline. | ||||
* | Switched from using YUI Compressor to Google Compiler. Minified and Gzipped ↵ | jeresig | 2009-12-18 | 1 | -1/+6 |
| | | | | filesize reduced to 22,839 bytes from 26,169 bytes (13% decrease in filesize). Sizzle copyright was merged into the main header (since it's removed automatically). Still passes all unit tests. | ||||
* | Made the licensing verbiage a little more explicit. Thanks to Dan Montgomery ↵ | John Resig | 2009-12-09 | 1 | -1/+1 |
| | | | | for the suggestion. | ||||
* | Removed the revision info and fixed the date pull to work against git log ↵ | John Resig | 2009-10-23 | 1 | -1/+0 |
| | | | | instead of SVN. | ||||
* | 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. | ||||
* | jquery intro: looks nicer when built | Ariel Flesler | 2009-01-05 | 1 | -0/+1 |
| | |||||
* | Moved the copyright to the intro file, added a ! so that it passes through ↵ | John Resig | 2009-01-04 | 1 | -0/+11 |
| | | | | YUIMin untouched, and changed the Date and Revision so that they're now generated automatically based upon all of jQuery rather than just the core file. | ||||
* | Only bind .ready() once per instance of jQuery - and only bind if the ↵ | John Resig | 2007-08-22 | 1 | -2/+1 |
| | | | | ready() method is actually called (nothing is bound if window/load is used). | ||||
* | You can now assign jQuery to random namespaces - very cool. (Bug #1393) | John Resig | 2007-08-21 | 1 | -1/+1 |
| | |||||
* | 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 | ||||
* | Fix for bug #983 (Packed jQuery doesn't have a license at the top of the file.) | John Resig | 2007-05-20 | 1 | -1/+1 |
| | |||||
* | typo | Jörn Zaefferer | 2007-01-09 | 1 | -1/+1 |
| | |||||
* | Fixed a bunch of endline issues.1.0.2 | John Resig | 2006-10-10 | 1 | -2/+2 |
| | |||||
* | Fixed bug #147, required some (ugly) modifications: changed function ↵ | Jörn Zaefferer | 2006-09-15 | 1 | -0/+2 |
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") { ... } |