aboutsummaryrefslogtreecommitdiffstats
path: root/src/event/event.js
Commit message (Collapse)AuthorAgeFilesLines
* Reorganzing the jQuery source (first phase).John Resig2007-09-081-472/+0
|
* Fixed a bug in event - "native" is a reserved word in Safari 2.John Resig2007-09-071-2/+2
|
* Removed all inline documentation. The current version of all documentation ↵John Resig2007-09-041-569/+10
| | | | is stored online, on the wiki: http://docs.jquery.com/
* Added namespaced events to bind, unbind, and trigger. This allows you to ↵John Resig2007-09-031-9/+29
| | | | deal with event handlers of a specific "class" (great for plugins).
* Reverted the change that I made in #1320.John Resig2007-09-021-1/+1
|
* Made it so that you can pass in an event object to the trigger data args and ↵John Resig2007-08-301-2/+9
| | | | it'll override the custom event object (this way you can pass in the event object of a mousemove to a drag event trigger, for example).
* Added a new extra fn arg to trigger (so you don't have to simulate the ↵John Resig2007-08-301-4/+13
| | | | trigger yourself). (Bug #1467) Added a new .triggerHandler() method that allows you to NOT trigger native calls AND returns the response from the handlers. (Bug #873 & #1417)
* Made jQuery's internal trigger method return the value from handle. (Bug #1417)John Resig2007-08-281-0/+5
|
* Made it so that the last return value is always returned from handle() ↵John Resig2007-08-281-2/+6
| | | | (unless one of the return values was false, in which case the return value is false). (Bug #1416)
* Only bind .ready() once per instance of jQuery - and only bind if the ↵John Resig2007-08-221-1/+11
| | | | ready() method is actually called (nothing is bound if window/load is used).
* Fixed the case where global events weren't being triggered on window and ↵John Resig2007-08-221-1/+1
| | | | document.
* Fix for a selector speed regression (calling a simple selector many times ↵John Resig2007-08-211-4/+0
| | | | | | | | | | resulted in a significant speed down). This has been fixed by breaking the RegExps out into the global scope. This required that a closure be implemented around the full jQuery script (which is now the case). Some simple changes were made in addition to the RegExp one, allowing for some greater flexibility on our part - and hopefully better compression. Speed results: http://dev.jquery.com/~john/ticket/1351/ vs. http://dev.jquery.com/~john/ticket/1351/113.html vs. http://dev.jquery.com/~john/ticket/1351/112.html
* Fixed two cases where []. was used instead of Array.prototype. (Bug #1427)John Resig2007-08-201-1/+1
|
* Make jQuery work without warnings in strict mode, in Firefox.John Resig2007-08-201-2/+2
|
* Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵John Resig2007-08-191-28/+7
| | | | | | | | | | In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
* More missing semicolons.John Resig2007-08-071-2/+2
|
* When we disabled triggering of clicks, we also killed off blur and focus, ↵John Resig2007-07-311-1/+1
| | | | this fixes that (bug #1440).
* trigger DOM0 event handlers when doing a trigger (#1363)Brandon Aaron2007-07-211-3/+7
|
* Fix for #1402Brandon Aaron2007-07-201-2/+2
|
* Fix for IE firing document ready too soon (Bug #1320).John Resig2007-07-121-1/+1
|
* Did some minor tidying up.John Resig2007-06-301-6/+5
|
* Fix for #1322Brandon Aaron2007-06-291-3/+3
|
* Fix for #1187, #1278 and #1279Brandon Aaron2007-06-211-3/+4
|
* Fix for #1185Brandon Aaron2007-05-311-7/+12
|
* Fix for #923, #1136 and #1233Brandon Aaron2007-05-311-2/+8
|
* Use .one() when doing a .bind() with an "unload" event type (#1242)Brandon Aaron2007-05-311-1/+4
|
* Fix event.which (#1217)Brandon Aaron2007-05-301-46/+37
|
* Clean up in jQuery.event.add for assigning a handler.guidBrandon Aaron2007-05-231-7/+4
|
* fix style, prefix and typo in a few commentsEd Engelhardt2007-05-221-2/+2
|
* Added support for the event object properties relatedTarget, metaKey, which, ↵John Resig2007-05-201-2/+23
| | | | and charCode. Fixes bug #1204.
* Clean up in jQuery.event.fix (#1171)Brandon Aaron2007-05-111-3/+3
|
* Fix for #1186Brandon Aaron2007-05-111-1/+1
|
* Query now throws no warnings under strict mode in Firefox (ticket #922). In ↵John Resig2007-04-291-12/+13
| | | | fixing this, revision [1771] was discovered and reverted (no API changes are being added in at this time), and a couple un-functioning test cases were fixed (array comparisions were being done for objects).
* Fix for #1061Brandon Aaron2007-04-261-1/+3
|
* unbind handlers with data + test (#935)Brandon Aaron2007-04-241-1/+4
|
* != undefined :)Brandon Aaron2007-04-241-1/+1
|
* Don't pass handler function as data for events + test (#1140)Brandon Aaron2007-04-241-5/+5
|
* Fix an issue with adding multiple event handlers and reattaching the global ↵Brandon Aaron2007-04-221-13/+13
| | | | event handler in IE
* Fix scope issue in DOM 2 event handlersBrandon Aaron2007-04-221-12/+18
|
* Use DOM 2 event handlers, do not trigger click on a tags and event.data no ↵Brandon Aaron2007-04-221-24/+36
| | | | longer global
* Fix generic event handler and $events expando removal for IEBrandon Aaron2007-03-051-1/+1
|
* Fix generic event handler and $events expando removal for IEBrandon Aaron2007-03-051-4/+4
|
* Cleaned up how event removing was handled. All expandos are now removed when ↵John Resig2007-03-011-21/+27
| | | | they are no longer needed. Additionally, a bug where all events are unbound if an incorrect event handler is provided, was fixed.
* Backported wiki changes from http://docs.jquery.com/API/1.1.1/EventsJörn Zaefferer2007-02-271-14/+30
|
* Fix for #964Brandon Aaron2007-02-251-6/+24
|
* Fix for bug #959, maintaining a list of event handlers on the 'events' ↵John Resig2007-02-181-12/+12
| | | | property was causing problems with elements whom had that ID.
* Fix for #849Brandon Aaron2007-02-071-1/+1
|
* Fixed docs for trigger, describing the second argument.Jörn Zaefferer2007-01-311-1/+11
|
* Refactored the trigger code a little bit.John Resig2007-01-221-17/+18
|
* You had to have an event bound in order to trigger an event - which is not ↵John Resig2007-01-221-1/+2
| | | | necessarily the case.