aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * cloneCopyEvent; jQuery.clone() reviewrwldrn2011-01-201-63/+71
| |
* | Revert "Make sure that focusin/focusout bubbles in non-IE browsers." This ↵jeresig2011-01-211-10/+5
| | | | | | | | | | | | | | | | | | | | | | was causing problems with the focusin event, see: #7340. This reverts commit 88068f82c199847d3679b130664dd91cc2e89f00. Conflicts: src/event.js test/unit/event.js
* | Replaces "text in-between" technique with a full-fledged one-level ↵jaubourg2011-01-211-40/+65
| | | | | | | | transitive search for converters (unit tests added). Also cleans up auto dataType determination and adds converter checks in order to guess the best dataType possible.
* | Merge branch 'fix-7853-add-context' of https://github.com/dmethvin/jquery ↵John Resig2011-01-201-1/+1
|\ \ | | | | | | | | | into dmethvin-fix-7853-add-context
| * | By default, use document root rather than current selection's context when ↵Dave Methvin2010-12-281-1/+1
| | | | | | | | | | | | add()ing elements. Fixes #7853.
* | | Merge branch 'master' of https://github.com/scottjehl/jquery into ↵John Resig2011-01-201-2/+4
|\ \ \ | | | | | | | | | | | | scottjehl-master
| * | | Revised the Nokia support fallback. It turns out that Nokia supports the ↵scottjehl2011-01-191-2/+4
| | | | | | | | | | | | | | | | documentElement property but does not define document.compatMode. Adding this third fallback allows Nokia to run jQuery error-free and return proper values for window width and height.
| * | | Merge remote branch 'upstream/master'scottjehl2011-01-1914-290/+477
| |\ \ \
| * | | | set name to lowercase, since it's passed as initial capsscottjehl2011-01-131-1/+1
| | | | |
| * | | | Merge branch 'master' of https://github.com/jquery/jqueryscottjehl2011-01-1318-1392/+1220
| |\ \ \ \
| * | | | | Getting window dimensions currently fails in Nokia browsers, causing JS ↵scottjehl2010-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | error (and consequently making jQuery Mobile fail to render the page). Based on a tip from Ben Nolan, this fix returns window.screen[width|height] if the other attempts at getting window dimensions fail. On mobile at least, it seems to make sense, and on desktop (assuming this issue would ever show up on desktop), this might be better than returning false or undefined.
* | | | | | Moves determineResponse logic into main ajax callback. Puts responseXXX ↵jaubourg2011-01-202-84/+79
| | | | | | | | | | | | | | | | | | | | | | | | fields definitions into ajaxSettings.
* | | | | | Removes misleading comment.jaubourg2011-01-201-1/+0
| | | | | |
* | | | | | Merge branch 'master' of github.com:jquery/jqueryjeresig2011-01-203-48/+47
|\ \ \ \ \ \
| * \ \ \ \ \ Merge branch 'master' of github.com:jquery/jqueryjaubourg2011-01-201-62/+16
| |\ \ \ \ \ \
| * | | | | | | Renames Deferred's fire and fireReject methods as resolveWith and rejectWith ↵jaubourg2011-01-202-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | respectively.
| * | | | | | | Renames determineDataType as determineResponse. Makes it more generic as a ↵jaubourg2011-01-202-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.jaubourg2011-01-201-7/+6
| | | | | | | |
| * | | | | | | Makes sure statusCode callbacks are ordered in the same way success and ↵jaubourg2011-01-201-4/+4
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | error callbacks are. Unit tests added.
* | | | | | | Bring jQuery('#id') and jQuery('body') logic back into core (while leaving ↵jeresig2011-01-201-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.jeresig2011-01-201-1/+1
| | | | | |
* | | | | | Move jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. ↵jeresig2011-01-201-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. ↵jaubourg2011-01-203-113/+97
| | | | | | | | | | | | | | | | | | | | Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added).
* | | | | Moves things around to make jsLint happier.jaubourg2011-01-191-2/+2
| | | | |
* | | | | Fixes crossDomain test so that it assumes port to be 80 for http and 443 for ↵jaubourg2011-01-191-2/+4
| | | | | | | | | | | | | | | | | | | | https when it is not provided.
* | | | | Moves determineDataType into ajaxSettings so that it is accessible to ↵jaubourg2011-01-192-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 ↵jaubourg2011-01-191-15/+16
| | | | | | | | | | | | | | | | | | | | handling.
* | | | | Use undefined instead of 0 to deference transport for clarity.jaubourg2011-01-191-1/+1
| | | | |
* | | | | Removes unnecessary test and ensures getResponseHeader returns null if the ↵jaubourg2011-01-191-12/+7
| | | | | | | | | | | | | | | | | | | | header does not exist.
* | | | | Revised how context is determined and removed unnecessary "parameter as ↵jaubourg2011-01-191-12/+10
| | | | | | | | | | | | | | | | | | | | variable" trick.
* | | | | Moved ajaxSettings.xhr definition together with support.ajax and ↵jaubourg2011-01-192-161/+173
| |_|/ / |/| | | | | | | | | | | support.cors determination into ajax/xhr.js.
* | | | Remove an unused regex and optimize character escape regex usage.Anton M2011-01-191-7/+2
| | | |
* | | | Merge branch 'chrome-slice-comment' of https://github.com/ajpiano/jquery ↵John Resig2011-01-181-1/+5
|\ \ \ \ | | | | | | | | | | | | | | | into ajpiano-chrome-slice-comment
| * | | | Fix tabs vs spaces in initial workaround commitadam j. sontag2011-01-171-1/+1
| | | | |
| * | | | shorten the SHAadam j. sontag2011-01-171-1/+1
| | | | |
| * | | | Add link to chrome issue ticketadam j. sontag2011-01-171-0/+1
| | | | |
| * | | | Add a comment to explain (and enforce the temporary-ness of) an extra line ↵adam j. sontag2011-01-171-0/+3
| | | | | | | | | | | | | | | | | | | | of code added to workaround a Chrome 10 bug
* | | | | Add another tweak for handling CSP - we need to make sure that we don't ↵John Resig2011-01-181-1/+10
| | | | | | | | | | | | | | | | | | | | 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 Resig2011-01-181-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | russtacular-master
| * | | | | jQuery.fn.offset no longer returns ClientRect object for disconnected elementsRussell Holbrook2010-11-221-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.
* | | | | | Merge branch 'master' of github.com:jquery/jquery into jquery-masterColin Snover2011-01-172-24/+34
|\ \ \ \ \ \
| * | | | | | Defer scriptEval test until first use to prevent Content Security Policy ↵Brandon Sterne2011-01-172-24/+34
| | |/ / / / | |/| | | | | | | | | | | | | | | | inline-script violations from occuring. Fixes #7371.
* | | | | | Merge in data_nocollide branch. Fixes #6968, improves unit testing framework ↵Colin Snover2011-01-176-98/+172
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | checks for leaky stuff.
| * | | | | Introduce a temporary hack to allow jQuery.fn.data("events") to continue to ↵Colin Snover2011-01-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | work. This will be going away in 1.6. More information will be available in the 1.5 release notes.
| * | | | | Fix jQuery.queue leaks empty queues.Colin Snover2011-01-091-0/+4
| | | | | |
| * | | | | Fix domManip leaks the first element when appending elements to multiple ↵Colin Snover2011-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | other elements.
| * | | | | Change the way jQuery.data works so that there is no longer a chance of ↵Colin Snover2011-01-096-99/+162
| | | | | | | | | | | | | | | | | | | | | | | | collision between user data and internal data. Fixes #6968.
* | | | | | Merge branch '7608' of https://github.com/rwldrn/jquery into rwldrn-7608jeresig2011-01-171-4/+8
|\ \ \ \ \ \
| * | | | | | Bug #7608 elem.runtimeStyle throws exception in Operarwldrn2011-01-051-4/+8
| | | | | | |
* | | | | | | Merging pull request 183 for #7793.jeresig2011-01-171-1/+1
|\ \ \ \ \ \ \