Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed bubbling of live events (if an inner element handles an event first - ↵ | John Resig | 2009-02-09 | 1 | -2/+6 | |
| | | | | and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980. | |||||
* | Optimized the clean() code to no longer use .trim() (speeds up working ↵ | John Resig | 2009-02-09 | 1 | -4/+5 | |
| | | | | against long HTML in IE). Fixes #4037. | |||||
* | Removed use of .trim() in globalEval, fixes #4036. | John Resig | 2009-02-09 | 1 | -3/+1 | |
| | ||||||
* | Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery ↵ | John Resig | 2009-02-09 | 1 | -20/+24 | |
| | | | | expandos were causing extra elements to appear from using .html() cloning), #3254 (Mis-match in clone result length causes problem), and #2845 (Cloning an <object/> causes exceptions to be thrown). | |||||
* | Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847. | John Resig | 2009-01-20 | 1 | -1/+1 | |
| | ||||||
* | Re-worked the logic for where .selector and .context are added for ID ↵ | John Resig | 2009-01-20 | 1 | -14/+10 | |
| | | | | selectors (especially ones that aren't found). Fixes jQuery bug #3833. | |||||
* | Brought the logic for handling isXMLDoc over from Sizzle. | John Resig | 2009-01-19 | 1 | -2/+2 | |
| | ||||||
* | Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵ | John Resig | 2009-01-19 | 1 | -2/+4 | |
| | | | | ticket #3916. | |||||
* | Only try to wrap the element if it's not disconnected, fixed #3828. | John Resig | 2009-01-12 | 1 | -13/+15 | |
| | ||||||
* | Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵ | John Resig | 2009-01-12 | 1 | -1/+1 | |
| | | | | elements. | |||||
* | Made a note about the push method. | John Resig | 2009-01-12 | 1 | -0/+2 | |
| | ||||||
* | Made the case specific of the type attribute. | John Resig | 2009-01-11 | 1 | -1/+1 | |
| | ||||||
* | Prevented non-script <script> blocks from executing, fixing #3733. | John Resig | 2009-01-11 | 1 | -1/+1 | |
| | ||||||
* | Fixed boxModel support - is now computed with feature detection, rather than ↵ | John Resig | 2009-01-11 | 1 | -3/+0 | |
| | | | | sniffing. | |||||
* | .closest() with positional selectors wasn't worked as expected. | John Resig | 2009-01-10 | 1 | -1/+3 | |
| | ||||||
* | Fixed an issue with script nodes being removed incorrectly, fixes #3737. | John Resig | 2009-01-10 | 1 | -1/+1 | |
| | ||||||
* | Selector state wasn't being passed along on a cloned jQuery object. | John Resig | 2009-01-08 | 1 | -0/+6 | |
| | ||||||
* | Fixed tabindex normalization so that elements that natively support tabbing, ↵ | Scott González | 2009-01-07 | 1 | -4/+8 | |
| | | | | | | 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. | |||||
* | Landed a number of improvements to the selector engine. Results are ↵ | John Resig | 2009-01-07 | 1 | -2/+7 | |
| | | | | | | | 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 Resig | 2009-01-06 | 1 | -6/+10 | |
| | ||||||
* | Switched back to the old style of running embedded scripts (users who have ↵ | John Resig | 2009-01-05 | 1 | -16/+5 | |
| | | | | | | | duplicate runs will have to deal with it another way). | |||||
* | Make sure that if no ownerDocument is available that we fall back to the ↵ | John Resig | 2009-01-05 | 1 | -3/+3 | |
| | | | | node itself (likely the document). | |||||
* | Landed cross-browser support for tabIndex, by Scott, closes ticket #3649. | John Resig | 2009-01-05 | 1 | -0/+7 | |
| | ||||||
* | Moved the copyright to the intro file, added a ! so that it passes through ↵ | John Resig | 2009-01-04 | 1 | -11/+0 | |
| | | | | 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 core: Misc file size optimizations. | Ariel Flesler | 2009-01-04 | 1 | -21/+19 | |
| | ||||||
* | jquery core: Allowing whitespaces within the [6026] addition. | Ariel Flesler | 2009-01-04 | 1 | -1/+1 | |
| | ||||||
* | Moved from the old JSMin to using YUIMin for compressing the jQuery source. ↵ | John Resig | 2009-01-04 | 1 | -0/+3 | |
| | | | | 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 Resig | 2009-01-03 | 1 | -6/+8 | |
| | | | | of going through the normal clean method. | |||||
* | Hid an issue where Safari through an exception when a colgroup was created ↵ | John Resig | 2009-01-03 | 1 | -1/+4 | |
| | | | | in jQuery.clean. Not completely sure what the cause is, yet. | |||||
* | Fixed an issue with .not("#foo, bar") not working correctly, closes #3757. | John Resig | 2008-12-31 | 1 | -1/+1 | |
| | ||||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 1 | -96/+2 | |
| | | | | queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification. | |||||
* | jquery core: Removed an orphaned line. Thanks mose. | Ariel Flesler | 2008-12-27 | 1 | -2/+0 | |
| | ||||||
* | jquery core: Fixed a global var leak introduced by me on a recent commit. | Ariel Flesler | 2008-12-26 | 1 | -7/+7 | |
| | ||||||
* | jquery core: Closes #3737. Fixed a possible null dereference. | Ariel Flesler | 2008-12-25 | 1 | -5/+7 | |
| | ||||||
* | jquery core: Closes #1681. jQuery.fn.toggleClass can accept a boolean ↵ | Ariel Flesler | 2008-12-25 | 1 | -2/+4 | |
| | | | | argument indicating add/remove. | |||||
* | jquery core: Closes #3255. The div used in jQuery.clean is emptied in the ↵ | Ariel Flesler | 2008-12-25 | 1 | -2/+6 | |
| | | | | end. Cleaning the parentNode's properties of the elements. | |||||
* | jquery core: Closes #3641. jQuery.merge stopped looping once a 0 was found. | Ariel Flesler | 2008-12-25 | 1 | -2/+2 | |
| | ||||||
* | jquery core: Closes #3666. Removed old code. | Ariel Flesler | 2008-12-25 | 1 | -1/+1 | |
| | ||||||
* | Added support for the new .closest() method (very useful for event delegation). | John Resig | 2008-12-22 | 1 | -0/+11 | |
| | ||||||
* | Added the new jQuery.support object and removed all uses of jQuery.browser ↵ | John Resig | 2008-12-21 | 1 | -117/+24 | |
| | | | | from within jQuery itself (while simultaneously deprecating the use of jQuery.browser). | |||||
* | Fixed an issue with domManip where the incorrect document was being used to ↵ | John Resig | 2008-12-21 | 1 | -1/+1 | |
| | | | | create the document fragment. | |||||
* | Landing the new Sizzle selector engine. There'll need to be some later ↵ | John Resig | 2008-12-20 | 1 | -2/+4 | |
| | | | | tweaks (to make the tests a little more pragmatic - especially for document order elements). But it appears to be passing well and that's enough. Closes #3563. | |||||
* | Fixed an issue with domManip where the incorrect clone fragments were being ↵ | John Resig | 2008-12-19 | 1 | -2/+3 | |
| | | | | used for elements. | |||||
* | Fixed an issue with how .data() was expecting output (trigger now returns ↵ | John Resig | 2008-12-19 | 1 | -1/+1 | |
| | | | | exact output - or null if none is provided, which was tripping it up). | |||||
* | Switched to using DOM Fragments in domManip. | John Resig | 2008-12-19 | 1 | -48/+51 | |
| | ||||||
* | Added selector path logging (creates a trail that plugins can use). | John Resig | 2008-12-19 | 1 | -7/+22 | |
| | ||||||
* | Removing remaining strict-mode warnings. | John Resig | 2008-12-19 | 1 | -3/+3 | |
| | ||||||
* | testrunner: adding tests for $.fn.hasClass. | Ariel Flesler | 2008-12-16 | 1 | -1/+1 | |
| | ||||||
* | IE doesn't care for boolean checks of .createElement - reverted back to ↵ | John Resig | 2008-11-29 | 1 | -1/+1 | |
| | | | | using typeof instead. | |||||
* | Standardized the type checks across core. isFunction and isArray now use ↵ | John Resig | 2008-11-17 | 1 | -35/+33 | |
| | | | | Object.prototype.toString to verify the type, .constructor use was removed in favor of typeof, typeof checks now use ===, undefined checks use === undefined. All of this is outlined in the new style guidelines: http://docs.jquery.com/JQuery_Core_Style_Guidelines#Type_Checks. Fixes bug #3618. |