aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Use .one() when doing a .bind() with an "unload" event type (#1242)Brandon Aaron2007-05-311-1/+4
|
* Fix event.which (#1217)Brandon Aaron2007-05-301-46/+37
|
* Clean up in jQuery.event.add for assigning a handler.guidBrandon Aaron2007-05-231-7/+4
|
* Rolling back Rev 1892Brandon Aaron2007-05-232-5/+2
|
* remove an unused variable and its assignment in the 'map' methodEd Engelhardt2007-05-221-1/+1
|
* remove a little superfluous blank which confused my eye the second time nowEd Engelhardt2007-05-221-1/+1
|
* In r1576 on 2007-03-24 the merge() method was split into merge() andEd Engelhardt2007-05-221-13/+17
| | | | | | | unique() for speed improvement reasons. Document this fact and also be clear about the fact that merge() is a generic function while unique() really works just with jQuery objects.
* fix style, prefix and typo in a few commentsEd Engelhardt2007-05-222-4/+4
|
* improve documentation of animate() function by mentioning both the 'swing' ↵Ed Engelhardt2007-05-221-2/+2
| | | | and 'linear' easings which are provided by default
* Updated the version to 1.1.3a.1.1.3aJohn Resig2007-05-211-1/+1
|
* Added support for the event object properties relatedTarget, metaKey, which, ↵John Resig2007-05-201-2/+23
| | | | and charCode. Fixes bug #1204.
* Fix for bug #983 (Packed jQuery doesn't have a license at the top of the file.)John Resig2007-05-202-2/+3
|
* Added fixes for bug #1052. Fixes the problems with animation chaining (and ↵John Resig2007-05-202-64/+86
| | | | problems with toggling). Also, removed toggling from jQuery.fx (it's now handled in .animate() instead).
* Fix for #1198Brandon Aaron2007-05-161-2/+3
|
* Fix for #921 (IE clones events)Brandon Aaron2007-05-141-4/+23
|
* Fix for #1182Brandon Aaron2007-05-131-1/+2
|
* Fix for #1169Brandon Aaron2007-05-133-8/+11
|
* Fix for #1162Brandon Aaron2007-05-132-3/+16
|
* Fix for #1163Brandon Aaron2007-05-132-2/+5
|
* Fix for #1167Brandon Aaron2007-05-112-2/+7
|
* Clean up in jQuery.event.fix (#1171)Brandon Aaron2007-05-111-3/+3
|
* Fix for #1186Brandon Aaron2007-05-111-1/+1
|
* Another test commit.John Resig2007-05-111-1/+1
|
* Testing a commit to the new repository.John Resig2007-05-111-1/+1
|
* Added some improvements to how the browser version is determined, based upon ↵John Resig2007-05-051-1/+1
| | | | the suggestions of 'hobbit' in [1101].
* Updated Packer - the current version was working incorrectly.John Resig2007-05-052-27/+37
|
* removing the context and selector properties that I left in ↵Brandon Aaron2007-05-021-6/+2
| | | | jQuery.prototype.init
* Rev [1827] broke the two XPath sibling selectors.John Resig2007-05-011-2/+2
|
* We're not adding new selector features in until a new full release. Please ↵John Resig2007-05-012-8/+2
| | | | discuss features like this in the dev mailing list, and in the bug tracker, before committing code.
* This test is expected to fail.John Resig2007-05-011-1/+1
|
* Moving constructor code to jQuery.prototype.init for more flexibilityBrandon Aaron2007-05-011-30/+47
|
* Changed test count to get the green bar backCorey Jewett2007-04-301-1/+1
|
* TDD. Broken test case, need to fix xpath parser...Corey Jewett2007-04-301-1/+2
|
* Completed test for Rev 1820 (#1044)Brandon Aaron2007-04-301-0/+1
|
* Append colgroup and col elements (#1044)Brandon Aaron2007-04-302-2/+10
|
* Query now throws no warnings under strict mode in Firefox (ticket #922). In ↵John Resig2007-04-295-80/+80
| | | | fixing this, revision [1771] was discovered and reverted (no API changes are being added in at this time), and a couple un-functioning test cases were fixed (array comparisions were being done for objects).
* Forgot to remove the test cases for XPath [n]. (Ticket #995)John Resig2007-04-281-5/+1
|
* Removed support for the XPath [n] - we weren't doing it right, and it would ↵John Resig2007-04-281-1/+1
| | | | actually require a lot of code to "do it right" (much more than what the feature is immediately worth). See ticket #995.
* Added support for finding elements that have underscores in their name ↵John Resig2007-04-283-5/+9
| | | | (along with other allowed characters). Fix for ticket #1084.
* Added jQuery.browser.version (see ticket #1101). Works in all browsers that ↵John Resig2007-04-281-0/+1
| | | | we support.
* Fix for #1061Brandon Aaron2007-04-261-1/+3
|
* Minor cleanupJörn Zaefferer2007-04-251-3/+0
|
* Updated build to packer3Jörn Zaefferer2007-04-255-3/+1255
|
* Fix for #1086: Append all caps HTML tagsBrandon Aaron2007-04-252-6/+10
|
* Fix for #1114: Appending legend elements in FirefoxBrandon Aaron2007-04-252-1/+8
|
* Fix for #1087: Using appendTo with select elementsBrandon Aaron2007-04-252-4/+8
|
* unbind handlers with data + test (#935)Brandon Aaron2007-04-242-5/+12
|
* != undefined :)Brandon Aaron2007-04-241-1/+1
|
* Don't pass handler function as data for events + test (#1140)Brandon Aaron2007-04-242-10/+15
|
* Add hook for modifying the merge behavior of $.extend. Specifically, and ↵Corey Jewett2007-04-231-4/+27
| | | | time there is a collision between the target and mergee this function is called to resolve it.