Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | jquery event: | Ariel Flesler | 2008-12-31 | 1 | -53/+80 | |
| | | | | | | | | | | | * event objects have isDefaultPrevented, isPropagationStopped and isImmediatePropagationStopped methods. * Removed donative and dohandlers from $.trigger * event.result carries the last returned data from a handler(not undefined). * $.trigger doesn't keep bubbling if stopPropagation() is called. * Same event object is used all along for global trigger * Fixed the bug where target doesn't change when triggering on many elements. * The data array on $.trigger was accumulating objects as it bubbles. testrunner: adding more tests | |||||
* | jquery event: removed the argument dohandlers from $.trigger. Uses another ↵ | Ariel Flesler | 2008-12-30 | 1 | -16/+13 | |
| | | | | approach. | |||||
* | Made sure that return false works in .live() along with the event object ↵ | John Resig | 2008-12-30 | 1 | -3/+7 | |
| | | | | being passed in as the first argument. | |||||
* | jquery data: Fixed a weird patch merging issue from [6011] | Ariel Flesler | 2008-12-30 | 1 | -146/+1 | |
| | ||||||
* | jquery data: Oops.. forgot to commit the new data module. This is part of ↵ | Ariel Flesler | 2008-12-30 | 1 | -0/+290 | |
| | | | | [6010]. | |||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 2 | -144/+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 support: Closes #3758, fixes a memory leak on IE. Thanks Choan Galvez. | Ariel Flesler | 2008-12-29 | 1 | -1/+2 | |
| | ||||||
* | jquery event: jQuery.Event can be instantiated without the 'new' keyword. | Ariel Flesler | 2008-12-29 | 1 | -3/+7 | |
| | ||||||
* | 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 event: Closes #3662. Adds a jQuery.Event class. Makes trigger and fix ↵ | Ariel Flesler | 2008-12-25 | 1 | -63/+74 | |
| | | | | simpler. Adds currentTarget attribute to event objects. Event object isn't passed as part of data. | |||||
* | jquery core: Closes #3737. Fixed a possible null dereference. | Ariel Flesler | 2008-12-25 | 1 | -5/+7 | |
| | ||||||
* | jquery selector: Removed a needless line (related to [5992]). | Ariel Flesler | 2008-12-25 | 1 | -1/+0 | |
| | ||||||
* | jquery fx: Fixed redundant code | Ariel Flesler | 2008-12-25 | 1 | -2/+2 | |
| | ||||||
* | jquery fx: Closes #3219. jQuery.fn.toggle can accept a boolean argument ↵ | Ariel Flesler | 2008-12-25 | 1 | -5/+8 | |
| | | | | indicating show/hide. | |||||
* | 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 | |
| | ||||||
* | Synced with Sizzle codebase (which removed the use of the caching code). | John Resig | 2008-12-22 | 1 | -18/+0 | |
| | ||||||
* | Disabled native event triggering (and, thus, bubbling) for global events. | John Resig | 2008-12-22 | 1 | -1/+1 | |
| | ||||||
* | Added a new liveQuery/event delegation hybrid method: .live and .die. Easily ↵ | John Resig | 2008-12-22 | 1 | -21/+75 | |
| | | | | adapts event delegation to the jQuery style. $("div").live("click", fn); $("div > #foo").live("submit", fn); $("div").die("click"); | |||||
* | Added support for bubbling triggered events. | John Resig | 2008-12-22 | 1 | -0/+6 | |
| | ||||||
* | Added support for the new .closest() method (very useful for event delegation). | John Resig | 2008-12-22 | 1 | -0/+11 | |
| | ||||||
* | Oops, forgot to commit support.js. | John Resig | 2008-12-21 | 1 | -0/+99 | |
| | ||||||
* | Added the new jQuery.support object and removed all uses of jQuery.browser ↵ | John Resig | 2008-12-21 | 4 | -154/+84 | |
| | | | | 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. | |||||
* | Syncing Sizzle codebase. | John Resig | 2008-12-20 | 1 | -10/+10 | |
| | ||||||
* | Added a missing semicolon. | John Resig | 2008-12-20 | 1 | -1/+1 | |
| | ||||||
* | Landing the new Sizzle selector engine. There'll need to be some later ↵ | John Resig | 2008-12-20 | 2 | -352/+789 | |
| | | | | 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. | |||||
* | Rewrote the hide and show methods to fix the issue with Safari not hiding ↵ | John Resig | 2008-12-19 | 1 | -22/+45 | |
| | | | | distached elements. Fixed #1239, #2233, #3038, #3343, #3395. They're also faster now, as well. | |||||
* | Fixed an issue with domManip where the incorrect clone fragments were being ↵ | John Resig | 2008-12-19 | 1 | -2/+3 | |
| | | | | used for elements. | |||||
* | Fixed a problem with multi-namespaced events not targetting the correct ↵ | John Resig | 2008-12-19 | 1 | -3/+5 | |
| | | | | functions for execution. | |||||
* | 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 | 3 | -6/+7 | |
| | ||||||
* | Added support for multiple-namespaced events (in bind, trigger, and unbind). | John Resig | 2008-12-19 | 1 | -8/+9 | |
| | ||||||
* | Simplifying the DOM ready code, no longer attempting to handle stylesheet ↵ | John Resig | 2008-12-19 | 1 | -40/+14 | |
| | | | | loading. Closes #2614. | |||||
* | 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. | |||||
* | Made a mistake in the patch for #3618, landing fix. | John Resig | 2008-11-18 | 1 | -1/+1 | |
| | ||||||
* | The code for handling Ajax timeouts was broken (the abort was being called ↵ | John Resig | 2008-11-18 | 1 | -3/+4 | |
| | | | | too early). Fixing this allows the test suite to work again. | |||||
* | Standardized the type checks across core. isFunction and isArray now use ↵ | John Resig | 2008-11-17 | 6 | -54/+52 | |
| | | | | 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. | |||||
* | Landing fixes for tickets #2935 and #2688 (Aborting ajax doesn't stop the ↵ | John Resig | 2008-11-14 | 1 | -4/+15 | |
| | | | | setInterval, ajaxStop event isn't getting triggered). | |||||
* | fix the long standing 2px offset issue in QuirksMode in IE | Brandon Aaron | 2008-11-13 | 1 | -3/+4 | |
| | ||||||
* | Landed the patch, by Diego, that 1) Removes browser sniffing from the ready ↵ | John Resig | 2008-11-12 | 1 | -15/+27 | |
| | | | | code and 2) Provides some form of fallback DOM Ready for Iframes in IE. Closes #2614. | |||||
* | new offset method, faster and no more browser detection | Brandon Aaron | 2008-11-10 | 1 | -90/+75 | |
| | ||||||
* | core: height() method wasn't working reliably in Opera - rather than ↵ | Paul Bakaus | 2008-11-07 | 1 | -1/+1 | |
| | | | | returning the actual client height when called on window, it returned the document's height through document.body.clientHeight. The right value to work with is html.clientHeight | |||||
* | jquery core: closes #3541. Added isArray. | Ariel Flesler | 2008-10-29 | 3 | -6/+10 | |
| |