aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include distribution in release tag1.3.01.3Timmy Willison2009-01-132-0/+4249
|
* Tagging the 1.3 release.John Resig2009-01-131-1/+1
|
* Merged Sizzle changes back into jQuery.John Resig2009-01-133-16/+47
|
* Added a trailing / in the innerHTML support test to allow it to not John Resig2009-01-131-1/+1
| | | | | throw an error in XHTML documents. Fixes #3829.
* Updated the benchmarking utility to use the Yahoo homepage and a bunch of ↵John Resig2009-01-122-457/+41
| | | | new selectors.
* Merged in from Sizzle - a change to child filter selector logic.John Resig2009-01-121-2/+2
|
* Merged in a fix from Sizzle for :not(:first).John Resig2009-01-121-0/+4
|
* Only try to wrap the element if it's not disconnected, fixed #3828.John Resig2009-01-122-14/+21
|
* Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵John Resig2009-01-122-2/+4
| | | | elements.
* Updating the source version to 1.3rc2.John Resig2009-01-121-1/+1
|
* Tagging the 1.3rc1 release.1.3rc1John Resig2009-01-121-1/+1
|
* Had to remove the global variable tricks (especially the delete window ↵John Resig2009-01-121-28/+8
| | | | | | | | calls) as they cause exceptions in IE. Also fixed a faulty test that assumed the order of Ajax function callbacks would be consistent.
* Tweaked the benchmark tests.John Resig2009-01-121-1/+1
|
* Made a note about the push method.John Resig2009-01-121-0/+2
|
* Made the case specific of the type attribute.John Resig2009-01-111-1/+1
|
* Merging the latest from Sizzle.John Resig2009-01-111-29/+36
|
* Prevented non-script <script> blocks from executing, fixing #3733.John Resig2009-01-112-2/+6
|
* Forgot to change the build.xml file as well.John Resig2009-01-111-1/+1
|
* Fixed boxModel support - is now computed with feature detection, rather than ↵John Resig2009-01-113-5/+14
| | | | sniffing.
* .closest() with positional selectors wasn't worked as expected.John Resig2009-01-102-2/+7
|
* Landed a fix for when a DOM element gets accidentally removed by another ↵John Resig2009-01-102-5/+27
| | | | live event handler. Thanks to Irae for the patches. Fixed #3820.
* Fixed an issue with script nodes being removed incorrectly, fixes #3737.John Resig2009-01-102-2/+5
|
* testrunner: Putting back the global variables used for ajax tests. I added ↵Ariel Flesler2009-01-106-30/+54
| | | | many calls to delete though. The global namespace must be cleaned up before calling start() again.
* testrunner: Removing every global variable leaked within (and outside) ↵Ariel Flesler2009-01-097-125/+108
| | | | tests. Some were deleted and some saved within the jQuery namespace.
* Didn't get specific enough with the proxy guid, fixes #3787.John Resig2009-01-092-4/+17
|
* Made it so that you can bind a single function to multiple .live() ↵John Resig2009-01-092-8/+35
| | | | | | | selectors. Additionally, simplified the proxy code to provide a default proxy function. Fixes #3787.
* testrunner: refactored unbind's tests. Including one for #3538, passing ↵Ariel Flesler2009-01-081-37/+66
| | | | since last commit.
* jquery event: Fixes #3538. unbind on many events was failing.Ariel Flesler2009-01-081-3/+3
|
* Selector state wasn't being passed along on a cloned jQuery object.John Resig2009-01-082-1/+12
|
* Fixed tabindex normalization so that elements that natively support tabbing, ↵Scott González2009-01-073-17/+17
| | | | | | but don't have a tabindex explicitly set return 0 instead of undefined. Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents.
* Merged in a missing argument from Sizzle.John Resig2009-01-071-1/+1
|
* Landed a number of improvements to the selector engine. Results are ↵John Resig2009-01-072-26/+59
| | | | | | | auto-merged onto the jQuery object, class filtering is now done inline, and not filtering is more efficient.
* Removed all uses of @ in the benchmarker and added a couple :not() tests.John Resig2009-01-061-7/+5
|
* Cleaned up the benchmarking utility (using a newer version of jQuery and ↵John Resig2009-01-063-4142/+1705
| | | | fixing the runner).
* Made the .unqiue() within .find() optional (speeds up calls).John Resig2009-01-061-6/+10
|
* Tagging the 1.3b2 release.1.3b2John Resig2009-01-051-1/+1
|
* jquery selector: Replacing {0,1} for ? in a regex.Ariel Flesler2009-01-051-1/+1
|
* Disabled an extra event binding.John Resig2009-01-051-1/+3
|
* Switched back to the old style of running embedded scripts (users who have ↵John Resig2009-01-051-16/+5
| | | | | | | duplicate runs will have to deal with it another way).
* Timeout test appears to be flaky - disabling, for now.John Resig2009-01-051-0/+2
|
* The timeout test was waiting for 10 seconds - unnecessary, lowered it to 1 ↵John Resig2009-01-051-1/+1
| | | | second.
* Oops, order of operations.John Resig2009-01-051-1/+1
|
* Brought in a fix from Sizzle - IE doesn't have .contains on XML elements.John Resig2009-01-051-1/+1
|
* Simplified the XML clone test.John Resig2009-01-051-4/+6
|
* Simplified the XML selector test (save the result).John Resig2009-01-051-3/+4
|
* Fixed an issue with how broken selector tests were handled in IE (the ↵John Resig2009-01-051-2/+2
| | | | exception was misdirected).
* The triggered flag was being set too early, which was preventing bubbling ↵John Resig2009-01-051-2/+2
| | | | | | | form working when a native event existed.
* Make sure that if no ownerDocument is available that we fall back to the ↵John Resig2009-01-051-3/+3
| | | | node itself (likely the document).
* Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.John Resig2009-01-055-2/+84
|
* jquery event: Removed a needless if (old code)Ariel Flesler2009-01-051-11/+9
|