aboutsummaryrefslogtreecommitdiffstats
path: root/src/intro.js
Commit message (Collapse)AuthorAgeFilesLines
* Build: combine intro and outroTimmy Willison2016-03-091-44/+0
| | | | | Fixes gh-2975 Close gh-2976
* Docs: Updated links to https where they are supported.Jon Dufresne2016-01-131-3/+3
| | | | Close gh-2746
* Build: Remove dates from copyright noticeAnne-Gaelle Colom2015-01-031-1/+1
| | | | Closes gh-1983
* Support: clean up comments and Support notationDave Methvin2014-06-101-8/+8
| | | | Closes gh-1577
* Intro: Pass window to intro if available, for browserifyForbes Lindesay2014-01-091-2/+2
| | | | Closes gh-1476
* Build: Happy New Year! Thanks @marlonlandaverdeDave Methvin2014-01-091-1/+1
|
* exports/global: Do not attach global variables for most CommonJS environmentsTimmy Willison2013-12-201-2/+2
| | | | | | | For CommonJS environments where the global already has a document, it is expected that if a global is needed, the user can attach the global. Fixes #14645.
* Change window to global in the most outer IIFE parameters.Michał Gołębiowski2013-11-171-5/+5
| | | | | | | In the most outer IIFE it’s not yet known if the global is window or not. Using the window variable to denote the global was misleading in that case, especially that the code didn’t make such assumption, requiring to provide a Web-like window separately. Renaming window to global clears the confusion.
* Fixes #14549. Execute the factory immediately when CommonJS is used in the ↵Timmy Willison2013-11-151-10/+14
| | | | browser.
* Fix some code style inconsistenciesOleg2013-10-071-2/+2
|
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-15/+1
|
* Remove `undefined` var declarationsTimmy Willison2013-07-081-1/+1
|
* Support CommonJS environments by accentuating the need for a window with a ↵Timmy Willison2013-07-041-1/+35
| | | | document. Fixes #13768.
* Fix #13335. Remove "use strict".Dave Methvin2013-02-011-1/+6
|
* Update copyrights used in file headers.Dave Methvin2013-01-111-1/+1
|
* Happy New Year! It's 2013.Dave Methvin2013-01-031-1/+1
|
* adds strict rule to jshint options (except for test files). "use strict" is ↵jaubourg2012-10-181-0/+1
| | | | added to the main jQuery closure and some "could-be-unsafe" `this` trickery in effects is silenced.
* Finish the license changes, including Sizzle.Dave Methvin2012-08-091-6/+4
|
* Update copyright to jQuery Foundation.Dave Methvin2012-07-031-1/+1
|
* Update copyright years for jQuery and Sizzletimmywil2012-06-261-2/+2
|
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-5/+0
|
* 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") { ... }