aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merged Sizzle changes back into jQuery.John Resig2009-01-131-11/+26
|
* 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.
* 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-121-13/+15
|
* Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵John Resig2009-01-121-1/+1
| | | | elements.
* 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-111-1/+1
|
* Fixed boxModel support - is now computed with feature detection, rather than ↵John Resig2009-01-112-4/+13
| | | | sniffing.
* .closest() with positional selectors wasn't worked as expected.John Resig2009-01-101-1/+3
|
* Landed a fix for when a DOM element gets accidentally removed by another ↵John Resig2009-01-101-4/+12
| | | | 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-101-1/+1
|
* Didn't get specific enough with the proxy guid, fixes #3787.John Resig2009-01-091-2/+2
|
* Made it so that you can bind a single function to multiple .live() ↵John Resig2009-01-091-7/+9
| | | | | | | selectors. Additionally, simplified the proxy code to provide a default proxy function. Fixes #3787.
* 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-081-0/+6
|
* Fixed tabindex normalization so that elements that natively support tabbing, ↵Scott González2009-01-072-9/+9
| | | | | | 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.
* Made the .unqiue() within .find() optional (speeds up calls).John Resig2009-01-061-6/+10
|
* jquery selector: Replacing {0,1} for ? in a regex.Ariel Flesler2009-01-051-1/+1
|
* 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).
* 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
|
* 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-052-1/+13
|
* jquery event: Removed a needless if (old code)Ariel Flesler2009-01-051-11/+9
|
* jquery intro: looks nicer when builtAriel Flesler2009-01-051-0/+1
|
* jquery fx: Shortening the code additions on [6037].Ariel Flesler2009-01-051-12/+17
|
* Merging from Sizzle (fixed a bug when querySelectorAll is used.John Resig2009-01-051-3/+4
|
* Made hide, show, toggle, slideUp, slideDown, and slideToggle animate margins ↵John Resig2009-01-051-13/+18
| | | | and paddings in addition to height, width, and opacity (results in a much-smoother animation).
* Synced with the Sizzle repository.John Resig2009-01-051-44/+35
|
* .live("div div") was failing due to the extra space in the selector (which ↵John Resig2009-01-041-1/+1
| | | | conflicted with multiple event binding in .bind).
* Moved the copyright to the intro file, added a ! so that it passes through ↵John Resig2009-01-042-11/+11
| | | | YUIMin untouched, and changed the Date and Revision so that they're now generated automatically based upon all of jQuery rather than just the core file.
* jquery event: event.stopImmediatePropagation() stops live handlers as well.Ariel Flesler2009-01-041-1/+1
|
* jquery core: Misc file size optimizations.Ariel Flesler2009-01-041-21/+19
|
* jquery ajax: File size optimization for compressed code.Ariel Flesler2009-01-041-1/+3
|
* jquery core: Allowing whitespaces within the [6026] addition.Ariel Flesler2009-01-041-1/+1
|
* Moved from the old JSMin to using YUIMin for compressing the jQuery source. ↵John Resig2009-01-043-2/+5
| | | | Additionally landed some improvements from #3770 which dramatically reduce the filesize. The final minifed + gzipped size of jQuery went from 19817 bytes to 18063 bytes.
* Landed a proper fix for #3255 - which involves doing createElement instead ↵John Resig2009-01-031-6/+8
| | | | of going through the normal clean method.
* Hid an issue where Safari through an exception when a colgroup was created ↵John Resig2009-01-031-1/+4
| | | | in jQuery.clean. Not completely sure what the cause is, yet.
* jquery event: Misc, removed a commented line from last commit.Ariel Flesler2009-01-021-6/+2
|
* Fixed an issue that was introduced by [5743] (which didn't have a test case, ↵John Resig2009-01-021-8/+5
| | | | either - that has been resolved). This fixed #3739.
* jquery event: Now using an internal argument to detect if bubbling on ↵Ariel Flesler2009-01-021-64/+59
| | | | | | $.event.trigger. The other would fail when it receives an event object with target. Also, the target isn't nulled anymore. In addition, there was a lot of code running O(n) during bubbling while not needed.
* jquery event: closes #3772. The extra function on $.event.trigger isn't ↵Ariel Flesler2009-01-021-14/+5
| | | | supported anymore.
* Fixed an issue with .not("#foo, bar") not working correctly, closes #3757.John Resig2008-12-311-1/+1
|
* jquery event: event.timeStamp wasn't being created when passing just the ↵Ariel Flesler2008-12-311-5/+6
| | | | | | type to the constructor. Misc: Simplified the readyList execution code.