aboutsummaryrefslogtreecommitdiffstats
path: root/src/intro.js
Commit message (Collapse)AuthorAgeFilesLines
* Cache references to navigator and location. Fixes #6690.John Resig2011-04-161-1/+3
|
* Updating the year in the header.jeresig2011-01-241-2/+2
|
* Clean trailing whitespace from all files.Colin Snover2010-12-301-1/+1
|
* Re-work the document scoping.jeresig2010-09-221-0/+2
|
* Update the license URL in the header.jeresig2010-01-251-1/+1
|
* Update the copyright from 2009 to 2010.John Resig2010-01-031-2/+2
|
* Made a number of spacing changes to bring the code more-inline with the ↵jeresig2009-12-211-1/+1
| | | | jQuery Core Style Guideline.
* Switched from using YUI Compressor to Google Compiler. Minified and Gzipped ↵jeresig2009-12-181-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 Resig2009-12-091-1/+1
| | | | for the suggestion.
* Removed the revision info and fixed the date pull to work against git log ↵John Resig2009-10-231-1/+0
| | | | instead of SVN.
* Did some light reordering of the jQuery definition. Moved window and ↵John Resig2009-05-201-1/+1
| | | | undefined to exist in intro/outro.
* jquery intro: looks nicer when builtAriel Flesler2009-01-051-0/+1
|
* Moved the copyright to the intro file, added a ! so that it passes through ↵John Resig2009-01-041-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 Resig2007-08-221-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 Resig2007-08-211-1/+1
|
* Fix for a selector speed regression (calling a simple selector many times ↵John Resig2007-08-211-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 Resig2007-05-201-1/+1
|
* typoJörn Zaefferer2007-01-091-1/+1
|
* Fixed a bunch of endline issues.1.0.2John Resig2006-10-101-2/+2
|
* Fixed bug #147, required some (ugly) modifications: changed function ↵Jörn Zaefferer2006-09-151-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") { ... }