aboutsummaryrefslogtreecommitdiffstats
path: root/src/event.js
Commit message (Expand)AuthorAgeFilesLines
* Landed a fix for when a DOM element gets accidentally removed by another live...John Resig2009-01-101-4/+12
* 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() selectors....John Resig2009-01-091-7/+9
* jquery event: Fixes #3538. unbind on many events was failing.Ariel Flesler2009-01-081-3/+3
* The triggered flag was being set too early, which was preventing bubbling for...John Resig2009-01-051-2/+2
* jquery event: Removed a needless if (old code)Ariel Flesler2009-01-051-11/+9
* .live("div div") was failing due to the extra space in the selector (which co...John Resig2009-01-041-1/+1
* jquery event: event.stopImmediatePropagation() stops live handlers as well.Ariel Flesler2009-01-041-1/+1
* jquery event: Misc, removed a commented line from last commit.Ariel Flesler2009-01-021-6/+2
* jquery event: Now using an internal argument to detect if bubbling on $.event...Ariel Flesler2009-01-021-64/+59
* jquery event: closes #3772. The extra function on $.event.trigger isn't suppo...Ariel Flesler2009-01-021-14/+5
* jquery event: event.timeStamp wasn't being created when passing just the type...Ariel Flesler2008-12-311-5/+6
* jquery event: Ariel Flesler2008-12-311-53/+80
* jquery event: removed the argument dohandlers from $.trigger. Uses another ap...Ariel Flesler2008-12-301-16/+13
* Made sure that return false works in .live() along with the event object bein...John Resig2008-12-301-3/+7
* jquery event: jQuery.Event can be instantiated without the 'new' keyword.Ariel Flesler2008-12-291-3/+7
* jquery event: Closes #3662. Adds a jQuery.Event class. Makes trigger and fix ...Ariel Flesler2008-12-251-63/+74
* Disabled native event triggering (and, thus, bubbling) for global events.John Resig2008-12-221-1/+1
* Added a new liveQuery/event delegation hybrid method: .live and .die. Easily ...John Resig2008-12-221-21/+75
* Added support for bubbling triggered events.John Resig2008-12-221-0/+6
* Added the new jQuery.support object and removed all uses of jQuery.browser fr...John Resig2008-12-211-33/+31
* Fixed a problem with multi-namespaced events not targetting the correct funct...John Resig2008-12-191-3/+5
* Removing remaining strict-mode warnings.John Resig2008-12-191-2/+3
* Added support for multiple-namespaced events (in bind, trigger, and unbind).John Resig2008-12-191-8/+9
* Simplifying the DOM ready code, no longer attempting to handle stylesheet loa...John Resig2008-12-191-40/+14
* Standardized the type checks across core. isFunction and isArray now use Obje...John Resig2008-11-171-4/+4
* Landed the patch, by Diego, that 1) Removes browser sniffing from the ready c...John Resig2008-11-121-15/+27
* jquery event: extra for #3498. Using the new mouse(enter|leave) shortcuts in ...Ariel Flesler2008-10-221-1/+1
* jquery event: closes #3498, adding $.fn.mouseenter & $.fn.mouseleave.Ariel Flesler2008-10-211-2/+2
* jquery event: closes #3355. Added stopImmediatePropagation() to events.Ariel Flesler2008-10-181-1/+13
* jquery event: closes #3127. jQuery.event.special built-in methods were optimi...Ariel Flesler2008-07-281-62/+37
* jquery event: closes #3112. It wasn't possible to bind 'data' to special events.Ariel Flesler2008-07-091-5/+5
* jquery event: Optimization to global unbinding on window unload. Thanks Mike ...Ariel Flesler2008-07-011-3/+6
* jquery event: closes #3107. Optimization to global event triggering. Thanks M...Ariel Flesler2008-07-011-1/+4
* jquery event: fixed a typo in a comment.Ariel Flesler2008-06-271-1/+1
* jquery event: caching the props array and fixing the loop that goes thru it. ...Ariel Flesler2008-05-281-3/+7
* jquery: removing unnecessary trailing and leading spaces & tabs.Ariel Flesler2008-05-131-61/+61
* jquery event & fx: tidying some comments.Ariel Flesler2008-05-131-2/+4
* jquery fx & event: replaced the use of .apply(), where .call() could had been...Ariel Flesler2008-05-121-1/+1
* jquery event: removing 3 unnecessary lines since the addition of $.event.proxy.Ariel Flesler2008-05-081-3/+0
* Making sure originalTarget gets copied over from the original event objectBrandon Aaron2008-05-071-1/+1
* mainly made the code shorter:Ariel Flesler2008-04-291-38/+36
* jquery event: from #2249, adding $.event.proxy to link event handlers, and im...Ariel Flesler2008-04-291-11/+22
* jquery event: adding some whitespaces to the last change.Ariel Flesler2008-04-291-2/+2
* jquery event: jQuery.toggle can accept more than 2 functions, closes #2378Ariel Flesler2008-04-291-2/+2
* jQuery.event.fix performance boost. An example: click event was previously ~3...Brandon Aaron2008-04-281-10/+16
* Prevent a single event object from being fixed more than onceBrandon Aaron2008-04-271-1/+7
* Optimization for jQuery.event.fix ... don't send fake event through jQuery.ev...Brandon Aaron2008-04-271-1/+1
* jquery core: simplified the code using the new jQuery.makeArray from [5314] w...Ariel Flesler2008-04-241-1/+1
* Fixed regression with 5276 where return false in first handler of multiple ha...Brandon Aaron2008-04-231-7/+10