aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/event.js
Commit message (Expand)AuthorAgeFilesLines
* Make sure that special.add actually copies over event namespaces and data. Fi...jeresig2010-01-251-0/+41
* Make sure multiple bound events have their namespaces and data maintained. Fi...jeresig2010-01-251-0/+34
* Make sure that it's possible to preventDefault natively-triggered (submit, fo...jeresig2010-01-251-1/+29
* Make sure that .die() with no args works. Fixes #5789.jeresig2010-01-231-1/+16
* Added support for multiple live event handlers, live hover, and live focus/bl...Irae Brasil2010-01-231-0/+14
* Make sure non-left-click events don't bubble. Fixes #3861.Irae Brasil2010-01-231-1/+8
* Revert "Adding in backwards-compatiblity support for jQuery().bind/unbind/tri...jeresig2010-01-111-13/+0
* Adding in backwards-compatiblity support for jQuery().bind/unbind/trigger - a...jeresig2010-01-061-0/+13
* Remove the .bind(name, fn, thisObject) and promote jQuery.event.proxy() to jQ...jeresig2009-12-311-5/+5
* Used the patch from Alexander as the basis for a rewrite of the IE change eve...Alexander Farkas2009-12-211-27/+9
* Fixed problems with removing live events. Fixes #4894.John Resig2009-12-091-1/+38
* Adding in support for bubbling submit and change events, thanks to the patch ...Justin Meyer2009-12-041-8/+131
* Simplified a selector in the .live() tests.jeresig2009-11-301-2/+2
* Tweaked the live test to be a bit simpler.jeresig2009-11-301-3/+5
* Corrected RegExp to match event namespaces. Fixes #5303.Robert Katic2009-11-261-0/+4
* Making sure that you can bind multiple toggles to a single element without pr...Mr Speaker2009-11-111-1/+17
* Probably not the optimal solution, but tests pass.Yehuda Katz2009-09-161-0/+16
* jquery event: closes #5250. bind(), unbind() and one() support Object Literal...Ariel Flesler2009-09-161-0/+53
* testrunner: focus & blur events could fail if the window isn't focusedAriel Flesler2009-09-151-11/+17
* testrunner: resetting the scroll position after focusing a fieldAriel Flesler2009-09-141-0/+1
* jquery event: fixes #4989. blur and focus events now bubble and can be handle...Ariel Flesler2009-09-141-0/+30
* fix for #3533, triggering an event with a colon in the name on a table no lon...Brandon Aaron2009-06-171-1/+9
* .bind() now accepts an optional thisObject as the last argument which is used...Brandon Aaron2009-05-071-1/+32
* fix for #4234. hover can take one function to use for both enter and leave.Brandon Aaron2009-05-061-0/+18
* unit tests for using jQuery events on non-dom elements. fixes #3439. thanks m...Brandon Aaron2009-05-041-0/+21
* live event handlers now receive data from trigger, fixes #4532, thanks nbubnaBrandon Aaron2009-04-301-1/+5
* refactor specialAll into add and remove hooks for existing special events, li...Brandon Aaron2009-04-301-1/+4
* enable test for binding events cross-frame that was fixed in r6316Brandon Aaron2009-04-291-9/+5
* .unbind() without any arguments now also unbinds namespaced events. fixes #46...Brandon Aaron2009-04-291-2/+7
* fix for #4189, live/die now work with contexts other than just documentBrandon Aaron2009-03-201-1/+19
* jquery event: Fixing event.currentTarget for live().Ariel Flesler2009-02-231-1/+12
* Changed the currentTarget test - no need to test the native event triggering ...John Resig2009-02-171-3/+1
* testrunner: MiscAriel Flesler2009-02-171-0/+3
* jquery event: closes #4033. e.currentTarget wasn't being enforced for native ...Ariel Flesler2009-02-171-0/+14
* Fixed bubbling of live events (if an inner element handles an event first - a...John Resig2009-02-091-1/+24
* Focused support of .live(). stopPropagation and stopImmediatePropagation are ...John Resig2009-01-201-1/+10
* Landed a fix for when a DOM element gets accidentally removed by another live...John Resig2009-01-101-1/+15
* Didn't get specific enough with the proxy guid, fixes #3787.John Resig2009-01-091-2/+15
* Made it so that you can bind a single function to multiple .live() selectors....John Resig2009-01-091-1/+26
* testrunner: refactored unbind's tests. Including one for #3538, passing since...Ariel Flesler2009-01-081-37/+66
* Disabled an extra event binding.John Resig2009-01-051-1/+3
* jquery event: closes #3772. The extra function on $.event.trigger isn't suppo...Ariel Flesler2009-01-021-38/+1
* jquery event: Ariel Flesler2008-12-311-31/+72
* Made sure that return false works in .live() along with the event object bein...John Resig2008-12-301-1/+15
* jquery event: jQuery.Event can be instantiated without the 'new' keyword.Ariel Flesler2008-12-291-2/+7
* jquery event: Closes #3662. Adds a jQuery.Event class. Makes trigger and fix ...Ariel Flesler2008-12-251-19/+33
* Added a new liveQuery/event delegation hybrid method: .live and .die. Easily ...John Resig2008-12-221-0/+66
* Made sure that the correct event.taget is being used in event bubbling.John Resig2008-12-221-4/+4
* Added support for bubbling triggered events.John Resig2008-12-221-1/+35
* Added support for multiple-namespaced events (in bind, trigger, and unbind).John Resig2008-12-191-0/+54