Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | | Renames Deferred's fire and fireReject methods as resolveWith and rejectWith ↵ | jaubourg | 2011-01-20 | 3 | -11/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | respectively. | |||||
| * | | | | | | | Renames determineDataType as determineResponse. Makes it more generic as a ↵ | jaubourg | 2011-01-20 | 2 | -27/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | first step into integrating the logic into the main ajax done callback. Also fixes some comments in ajax/xhr.js. | |||||
| * | | | | | | | Revises the way arguments are handled in ajax. | jaubourg | 2011-01-20 | 1 | -7/+6 | |
| | | | | | | | | ||||||
| * | | | | | | | Makes sure statusCode callbacks are ordered in the same way success and ↵ | jaubourg | 2011-01-20 | 2 | -7/+34 | |
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | error callbacks are. Unit tests added. | |||||
* | | | | | | | Bring jQuery('#id') and jQuery('body') logic back into core (while leaving ↵ | jeresig | 2011-01-20 | 1 | -18/+57 | |
| |/ / / / / |/| | | | | | | | | | | | | | | | | | it in Sizzle at the same time). Was causing too much of a performance hit to leave it all to Sizzle. | |||||
* | | | | | | Fix typo in regex tweak from previous commit. | jeresig | 2011-01-20 | 1 | -1/+1 | |
| | | | | | | ||||||
* | | | | | | Move jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. ↵ | jeresig | 2011-01-20 | 1 | -62/+16 | |
|/ / / / / | | | | | | | | | | | | | | | | Additionally add in a new catch for Sizzle('.class') (avoid using qSA and use getElementsByClassName instead, where applicable). | |||||
* | | | | | Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. ↵ | jaubourg | 2011-01-20 | 4 | -113/+138 | |
| | | | | | | | | | | | | | | | | | | | | Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added). | |||||
* | | | | | Moves active counter test after all other ajax tests where it should be. | jaubourg | 2011-01-19 | 1 | -4/+4 | |
| | | | | | ||||||
* | | | | | Moves things around to make jsLint happier. | jaubourg | 2011-01-19 | 1 | -2/+2 | |
| | | | | | ||||||
* | | | | | Fixes crossDomain test so that it assumes port to be 80 for http and 443 for ↵ | jaubourg | 2011-01-19 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | https when it is not provided. | |||||
* | | | | | Moves determineDataType into ajaxSettings so that it is accessible to ↵ | jaubourg | 2011-01-19 | 2 | -51/+52 | |
| | | | | | | | | | | | | | | | | | | | | transports without the need for a second argument and so that we can now pass the original options to the transport instead. Also ensures the original options are actually propagated to prefilters (they were not). | |||||
* | | | | | Re-adds hastily removed variable and simplifies statusCode based callbacks ↵ | jaubourg | 2011-01-19 | 1 | -15/+16 | |
| | | | | | | | | | | | | | | | | | | | | handling. | |||||
* | | | | | Use undefined instead of 0 to deference transport for clarity. | jaubourg | 2011-01-19 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Removes unnecessary test and ensures getResponseHeader returns null if the ↵ | jaubourg | 2011-01-19 | 1 | -12/+7 | |
| | | | | | | | | | | | | | | | | | | | | header does not exist. | |||||
* | | | | | Revised how context is determined and removed unnecessary "parameter as ↵ | jaubourg | 2011-01-19 | 1 | -12/+10 | |
| | | | | | | | | | | | | | | | | | | | | variable" trick. | |||||
* | | | | | Moved ajaxSettings.xhr definition together with support.ajax and ↵ | jaubourg | 2011-01-19 | 2 | -161/+173 | |
|/ / / / | | | | | | | | | | | | | support.cors determination into ajax/xhr.js. | |||||
* | | | | Remove an unused regex and optimize character escape regex usage. | Anton M | 2011-01-19 | 1 | -7/+2 | |
| | | | | ||||||
* | | | | Merge branch 'master' of https://github.com/mathiasbynens/jquery into ↵ | John Resig | 2011-01-18 | 1 | -2/+2 | |
|\ \ \ \ | | | | | | | | | | | | | | | | mathiasbynens-master | |||||
| * | | | | Add missing line break after copyright header and trailing semicolon at the ↵ | Mathias Bynens | 2011-01-18 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | end of the minified version. | |||||
* | | | | | Merge branch 'chrome-slice-comment' of https://github.com/ajpiano/jquery ↵ | John Resig | 2011-01-18 | 1 | -1/+5 | |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | into ajpiano-chrome-slice-comment | |||||
| * | | | | | Fix tabs vs spaces in initial workaround commit | adam j. sontag | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | ||||||
| * | | | | | shorten the SHA | adam j. sontag | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | ||||||
| * | | | | | Add link to chrome issue ticket | adam j. sontag | 2011-01-17 | 1 | -0/+1 | |
| | | | | | | ||||||
| * | | | | | Add a comment to explain (and enforce the temporary-ness of) an extra line ↵ | adam j. sontag | 2011-01-17 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | of code added to workaround a Chrome 10 bug | |||||
* | | | | | | Weird, not sure why I got an exec error before - doesn't seem to be needed. | John Resig | 2011-01-18 | 1 | -0/+0 | |
| |/ / / / |/| | | | | ||||||
* | | | | | Make sure that the UglifyJS file is executable. | John Resig | 2011-01-18 | 1 | -0/+0 | |
| | | | | | ||||||
* | | | | | Add another tweak for handling CSP - we need to make sure that we don't ↵ | John Resig | 2011-01-18 | 2 | -1/+40 | |
| | | | | | | | | | | | | | | | | | | | | trigger any eval on load (not sure if it's the best tweak, definitely not ideal). Add a test page as well so that it's easier to catch problem. | |||||
* | | | | | Merge branch 'master' of https://github.com/russtacular/jquery into ↵ | John Resig | 2011-01-18 | 1 | -1/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | russtacular-master | |||||
| * | | | | | jQuery.fn.offset no longer returns ClientRect object for disconnected elements | Russell Holbrook | 2010-11-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of returning box, which is a ClientRect, we take the top and left box values and place them into a generic object. | |||||
* | | | | | | Clarify cygwin instructions slightly and swap the order of arguments to ↵ | Colin Snover | 2011-01-17 | 2 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | which in Makefile because of a bug in current versions of MSYS that causes only the first argument to /bin/which to be searched. | |||||
* | | | | | | Update Makefile to use either nodejs or node, whichever exists (Debian uses ↵ | Colin Snover | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | nodejs). | |||||
* | | | | | | Update unit test for #7608 which was leaking timers. | rwldrn | 2011-01-17 | 1 | -11/+2 | |
| | | | | | | ||||||
* | | | | | | Replace build system with a faster new one that uses Node and UglifyJS and ↵ | Colin Snover | 2011-01-17 | 12 | -369/+3073 | |
| | | | | | | | | | | | | | | | | | | | | | | | | generates smaller minified files. Also removes builds through rake/ant since having 3 different build systems was too much to maintain (make was the only one consistently kept up-to-date). Fixes #7973. | |||||
* | | | | | | Disabled a broken test for now, until WebKit browsers become more current. | jeresig | 2011-01-17 | 1 | -2/+5 | |
| | | | | | | ||||||
* | | | | | | Accidentally removed the module teardown code. | jeresig | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | ||||||
* | | | | | | Opera was falling back to undefined, which it didn't appreciate. | jeresig | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | ||||||
* | | | | | | Merge branch 'master' of github.com:jquery/jquery | jeresig | 2011-01-17 | 21 | -229/+543 | |
|\ \ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge branch 'master' of github.com:jquery/jquery into jquery-master | Colin Snover | 2011-01-17 | 2 | -24/+34 | |
| |\ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ | Merge in data_nocollide branch. Fixes #6968, improves unit testing framework ↵ | Colin Snover | 2011-01-17 | 21 | -229/+543 | |
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | | checks for leaky stuff. | |||||
| | * | | | | | | Introduce a temporary hack to allow jQuery.fn.data("events") to continue to ↵ | Colin Snover | 2011-01-17 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | work. This will be going away in 1.6. More information will be available in the 1.5 release notes. | |||||
| | * | | | | | | Update unit tests with a leak detection mechanism for the various jQuery ↵ | Colin Snover | 2011-01-09 | 15 | -38/+189 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | globals and fix all leaks in the tests. | |||||
| | * | | | | | | Fix jQuery.queue leaks empty queues. | Colin Snover | 2011-01-09 | 1 | -0/+4 | |
| | | | | | | | | ||||||
| | * | | | | | | Fix domManip leaks the first element when appending elements to multiple ↵ | Colin Snover | 2011-01-09 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | other elements. | |||||
| | * | | | | | | Change the way jQuery.data works so that there is no longer a chance of ↵ | Colin Snover | 2011-01-09 | 10 | -192/+341 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | collision between user data and internal data. Fixes #6968. | |||||
* | | | | | | | | Fixed a couple issues with escaping of attribute values in selectors. Fixes ↵ | jeresig | 2011-01-17 | 1 | -12/+55 | |
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | #6093. | |||||
* | | | | | | | Defer scriptEval test until first use to prevent Content Security Policy ↵ | Brandon Sterne | 2011-01-17 | 2 | -24/+34 | |
|/ / / / / / | | | | | | | | | | | | | | | | | | | inline-script violations from occuring. Fixes #7371. | |||||
* | | | | | | Merge branch '7608' of https://github.com/rwldrn/jquery into rwldrn-7608 | jeresig | 2011-01-17 | 2 | -4/+30 | |
|\ \ \ \ \ \ | ||||||
| * | | | | | | whitespace fixes in unit tests | rwldrn | 2011-01-10 | 1 | -18/+18 | |
| | | | | | | | ||||||
| * | | | | | | Bug #7608 elem.runtimeStyle throws exception in Opera | rwldrn | 2011-01-05 | 2 | -4/+30 | |
| | | | | | | |