aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include distribution in release tag1.4.01.4Timmy Willison2010-01-132-0/+6007
|
* We only care that some of the html return value is escaped, not necessarily ↵jeresig2010-01-131-8/+8
| | | | all of it (as is the case in Safari 3.x).
* Make sure no exception is thrown if no event handler is found (which is the ↵jeresig2010-01-131-0/+6
| | | | case for applets, objects, and embeds).
* Make sure that null params aren't traversed. Fixes #5794.jeresig2010-01-132-3/+4
|
* Send data if a DELETE Ajax request is done. Fixes #5752.jeresig2010-01-131-1/+1
|
* Make sure that disconnected nodes aren't sorted/uniqued. Fixes #5791.jeresig2010-01-132-7/+18
|
* Fixed typo in logic, also disabled function setters in this case to allow ↵jeresig2010-01-125-6/+12
| | | | the functions to passthrough and bind.
* Make sure that the xhr object still exists after the abort is called.jeresig2010-01-121-1/+3
|
* Make sure that the focusin and focusout easy-bind methods are exposed.jeresig2010-01-121-1/+1
|
* Make sure oldAbort is only called if the xhr object still exists.jeresig2010-01-121-2/+1
|
* Updating the source version to 1.4.jeresig2010-01-121-1/+1
|
* Tagging the 1.4rc1 release.1.4rc1jeresig2010-01-121-1/+1
|
* Simplified some of the logic for handling the ajax aborts, making sure that ↵jeresig2010-01-121-12/+9
| | | | ajaxStop isn't called twice.
* ajaxStop was getting called too many times, separated some of the logic into ↵jeresig2010-01-121-4/+7
| | | | the abort method itself.
* Accidentally removed the init from the Makefile selector build.jeresig2010-01-121-1/+1
|
* Make sure that Opera fires events after an aborted Ajax attempt. Fixes #5787.jeresig2010-01-122-2/+20
|
* Bringing some selector tests back from Sizzle.jeresig2010-01-111-1/+3
|
* Merge branch 'master' of github.com:jquery/jqueryjeresig2010-01-112-4/+21
|\
| * browser version detection revised for opera >= 10, which was reporting ↵Paul Irish2010-01-121-2/+2
| | | | | | | | itself as 9.8 due to their new policy
| * adding extra useragents from trac tickets. correcting opera versionPaul Irish2010-01-121-1/+18
| |
| * fixed typo in commentsNeeraj Singh2010-01-121-1/+1
| |
* | Some more touching up of the replaceWith tests.jeresig2010-01-111-4/+12
|/
* Did some reorganizing of the recently added replaceWith tests.jeresig2010-01-111-3/+2
|
* Make sure we do the malformed JSON check for all both JSON.parse and new ↵jeresig2010-01-111-6/+9
| | | | Function (this helps to create uniformity between browser implementations of JSON.parse - like where Chrome allows some malformed strings. Thanks to DBJDBJ for the heads-up.
* Make sure that wrapInner works on elements that have no contents. Fixes #3552.jeresig2010-01-112-2/+14
|
* Final pass at fixing #5785. Need to make sure that inner-nodes are detached ↵jeresig2010-01-112-4/+20
| | | | before the remove() occurs (and it should still occur, the nodes are being obliterated.
* Made some additional tests for #5785.jeresig2010-01-111-1/+5
|
* Make sure we use detach instead of remove in replaceWith. Fixes #5785.jeresig2010-01-112-2/+11
|
* Revert "Adding in backwards-compatiblity support for ↵jeresig2010-01-112-31/+5
| | | | | | jQuery().bind/unbind/trigger - and immediately deprecating it. Please explicitly use jQuery(document) in your code." This reverts commit e9d5947b4abbc052046585227892da0adcd56caf.
* Make sure that submit event is still bound for regular form submit events. ↵jeresig2010-01-111-0/+3
| | | | Thanks to Mark Gibson for the fix suggestion.
* Merge branch 'setterargs'jeresig2010-01-078-263/+653
|\
| * Re-ordering the args to setOffset() in case people were relying upon the old ↵jeresig2010-01-071-3/+3
| | | | | | | | order (doubtful).
| * Added in support for .offset(Function).jeresig2010-01-072-26/+38
| |
| * Add .css(Function) incoming value tests.jeresig2010-01-071-0/+60
| |
| * No need for the try/finally logic in the css tests, won't even work as expected.jeresig2010-01-071-49/+43
| |
| * Added manipulation tests for setter function args.jeresig2010-01-071-3/+175
| |
| * Make sure that .html(Function) gets the correct previous value.jeresig2010-01-071-0/+8
| |
| * Added some .text(Function) tests.jeresig2010-01-071-26/+37
| |
| * Added tests for attribute function setters.jeresig2010-01-071-9/+141
| |
| * Removed .removeAttr(Function), it didn't really make sense.jeresig2010-01-071-8/+1
| |
| * Make sure the state is passed in to the toggleClass attribute function.jeresig2010-01-071-1/+1
| |
| * Moved the val() tests from manipulation into attributes.jeresig2010-01-072-86/+86
| |
| * Fixed some bugs relating to the setter arg change in val and html. Also ↵jeresig2010-01-072-18/+13
| | | | | | | | optimized the code in val a bit.
| * Fixing some bugs in the re-tooling of toggleClass, adding in some ↵jeresig2010-01-061-10/+11
| | | | | | | | performance optimizations.
| * A first pass at making sure that all the setter function arguments receive ↵jeresig2010-01-063-60/+72
| | | | | | | | the index of the element and a relevant value to work with. Fixes #5763.
* | Make sure the exception has some level of parity with the error from json2.js.jeresig2010-01-071-1/+1
| |
* | Make sure that a parsererror is thrown whenever malformed JSON comes back ↵jeresig2010-01-073-8/+34
| | | | | | | | from a server (so that the Ajax error handler is called). Makes it uniform across browsers that do and don't have JSON.parse support.
* | Back out the try/catch logic from around JSON.parse. We should always try to ↵jeresig2010-01-071-3/+3
| | | | | | | | use it, otherwise security will suffer.
* | There's enough logic going on in jQuery.ajaxSettings.xhr to warrant ↵jeresig2010-01-071-6/+5
|/ | | | splitting the function based upon the functionality.
* Add some abort() Ajax tests. Verifies that #3984 works.jeresig2010-01-061-0/+24
|