aboutsummaryrefslogtreecommitdiffstats
path: root/src/event.js
Commit message (Expand)AuthorAgeFilesLines
* Make sure that mouseenter/mouseleave fire on the correct element when doing d...John Resig2011-05-101-3/+4
* Restores var names to satisfy the crock-machine. Supplements #9008Rick Waldron2011-04-281-1/+1
* Restored /g flag to rspaces; Adds unit tests; Supplements #9008Rick Waldron2011-04-281-1/+1
* Make cached rspaces regex definitions consistent. Fixes #9008rwldrn2011-04-281-2/+2
* Landing pull request 344. using jQuery.nodeName where applicable.Jordan Boesch2011-04-231-4/+4
* Merge branch 'master' of github.com:jquery/jquery into fix-8790a-quicker-triggerDave Methvin2011-04-211-3/+8
|\
| * DRY out #6514Rick Waldron2011-04-171-1/+1
| * Fix live mouseenter and mouseleave binding so they can be activated by trigge...Brian Brennan2011-04-171-1/+1
| * Added check for live mouseenter/mouseleave events if bound to nested elements...Gilmore Davidson2011-04-171-0/+5
| * Make sure that there isn't an error if no event object exists. Fixes #8755.John Resig2011-04-171-1/+1
| * Allow function to be passed in as a data object to bind and one. Fixes #6993.John Resig2011-04-161-1/+1
* | Follow-up to #8790. Delay the creation of a jQuery.Event until we know it wil...Dave Methvin2011-04-161-26/+23
|/
* Fix test suite fail in IE6/7 on event:undelegate - was failing an if where it...timmywil2011-04-131-2/+2
* Followup to #8753. Modify new Event constructor signature to jQuery.event(typ...Dave Methvin2011-04-121-15/+9
* Merge branch 'fix-8790-quick-trigger'Dave Methvin2011-04-121-4/+5
|\
| * Explicitly set event.type in case we chopped out a namespace or exclusive flag.Dave Methvin2011-04-121-0/+1
| * Use explicit "new jQuery.Event" to avoid double-function-call overhead.Dave Methvin2011-04-121-3/+3
* | Accessing the 'type' property on VML elements fails on IE. Fixes #7071.John Firebaugh2011-04-121-2/+2
* | Merge branch 'Sub_Naming' of https://github.com/timmywil/jquery into timmywil...John Resig2011-04-121-1/+1
|\ \
| * | Changed $.sub internals to match sub naming, added some more spacing in some ...Timmy Willison2011-02-061-4/+2
* | | More formatting tweaks.John Resig2011-04-121-2/+2
* | | Fixing some minor formatting problems.John Resig2011-04-121-1/+3
* | | Merge branch 'fix-8790-quick-trigger' of https://github.com/dmethvin/jquery i...John Resig2011-04-121-15/+31
|\ \ \ | | |/ | |/|
| * | Merge branch 'master' of github.com:jquery/jquery into fix-8790-quick-triggerDave Methvin2011-04-111-0/+8
| |\ \
| * | | Shave some time off array setup in trigger/handleDave Methvin2011-04-111-2/+2
| * | | Merge branch 'master' of github.com:jquery/jquery into fix-8790-quick-triggerDave Methvin2011-04-111-1/+4
| |\ \ \
| * | | | Move initialization of event until we determine if anyone wants it.Dave Methvin2011-04-111-15/+18
| * | | | Merge branch 'master' of github.com:jquery/jquery into fix-8790-quick-triggerDave Methvin2011-04-101-34/+54
| |\ \ \ \
| * | | | | Allow specific custom events to exit trigger early if there are no handlers b...Dave Methvin2011-04-061-2/+15
* | | | | | Removing un-needed frameElement check as discussed in #8018. Fixes #8108.jeresig2011-04-121-11/+0
| |_|_|/ / |/| | | |
* | | | | Merge branch '8777' of https://github.com/rwldrn/jquery into rwldrn-8777jeresig2011-04-111-0/+8
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Ticket #8777 undelegate by namespacerwldrn2011-04-051-2/+11
* | | | | Ticket #8753 Always set event type explicitlyRick Waldon2011-04-111-2/+5
| |_|/ / |/| | |
* | | | Merge branch 'proxy-native-bind' of https://github.com/gf3/jquery into gf3-pr...jeresig2011-04-101-17/+27
|\ \ \ \
| * \ \ \ Merge branch 'master' into proxy-native-bindGianni Chiappetta2011-01-211-67/+55
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | Fixing $.proxy to work like (and use) Function.prototype.bind (ticket #7783)Gianni Chiappetta2010-12-141-17/+27
* | | | | Merge branch 'eventprops.1.6final' of https://github.com/rwldrn/jquery into r...jeresig2011-04-101-4/+14
|\ \ \ \ \
| * | | | | Remove this.type assignmentrwldrn2011-04-051-4/+0
| * | | | | Move this.type setting to after prop set; avoid setting twicerwldrn2011-04-051-1/+4
| * | | | | Ticket #8753 Allow special properties to explicitly defined on jQuery.Event o...rwldrn2011-04-051-3/+14
| | |_|/ / | |/| | |
* | | | | Fixes #8722. Remove try/catch used by #3533 to fix the IE Table Colon Blow bu...Dave Methvin2011-04-071-13/+13
| |_|_|/ |/| | |
* | | | Fix #8732. Change feature detect for focusin event support, so IE9 won't have...Dave Methvin2011-04-061-1/+1
* | | | Fixes #8712. Bubble custom events to the window when they are triggered. Ride...Dave Methvin2011-04-061-1/+2
* | | | Fix some spacing and comment issues that crept in with the rebase.Dave Methvin2011-04-061-61/+60
* | | | Sadly, we still have to bubble the event so inline handlers will work.Dave Methvin2011-04-061-5/+4
* | | | Only bubble a triggered event if we have attached a jQuery handler, but check...Dave Methvin2011-04-061-27/+30
* | | | Switch from recursion to iteration for event triggering. Move event-name name...Dave Methvin2011-04-061-70/+52
* | | | Shorten up the code and do event cleanup on test cases.Dave Methvin2011-04-051-8/+3
* | | | Merge branch 'ticket_7883' of https://github.com/rwldrn/jquery into rwldrn-ti...Dave Methvin2011-04-051-1/+6
|\ \ \ \ | |/ / / |/| | |
| * | | #7883 .delegate and .live should accept false as the fn arg, like bindrwldrn2011-01-011-1/+6