Colin Snover
|
429b078dc7
|
Merge branch 'fix7762' into jquery master. Fixes #7762.
|
2010-12-30 00:02:56 -06:00 |
|
Dave Methvin
|
64ee5581af
|
When a native browser event is bubbling up the DOM, make sure that the correct isDefaultPrevented value is reflected by jQuery's Event object. Fixes #7793.
|
2010-12-27 13:30:05 -06:00 |
|
Colin Snover
|
37d297c67f
|
Clearing event handlers on unload is no longer necessary in any version of IE. This issue causing memory leaks between pages was fixed in MS07-033.
|
2010-12-26 14:28:49 -06:00 |
|
Colin Snover
|
a939ade9c6
|
Fix whitespace in event.js
|
2010-12-26 14:28:13 -06:00 |
|
John Resig
|
b00ab56160
|
Merge branch 't6398' of https://github.com/jitter/jquery into jitter-t6398
|
2010-12-06 17:19:30 -05:00 |
|
danheberden
|
3e6e3c5eb8
|
Fix for #6911 - prevent disabled elements in liveHandler
|
2010-11-21 16:54:56 -08:00 |
|
Anton M
|
89b771daef
|
Make sure custom events named "submit" can be bound to non DOM elements in IE too. Fixes 6398.
|
2010-11-21 04:31:04 +01:00 |
|
John Resig
|
fb48ae8e6c
|
Make sure that when multiple variables are being declared that assignments are each done on their own line.
|
2010-11-09 11:09:07 -05:00 |
|
John Resig
|
b5b3c73db3
|
We don't do end of line comments, move them above.
|
2010-11-09 10:34:32 -05:00 |
|
John Resig
|
7066bb384b
|
Temporarily backing out commit bd474799bf .
|
2010-10-25 20:26:19 -07:00 |
|
danheberden
|
bd474799bf
|
Prevent IE from firing live/delegate events on disabled elements. (#6911)
|
2010-10-25 14:07:44 -07:00 |
|
dmethvin
|
974b5aeab7
|
Honor stopImmediatePropagation for live/delegate event handlers. Fixes #7217.
|
2010-10-25 13:05:31 -07:00 |
|
rwldrn
|
3b50eaca2c
|
Fixes #7229 and #5803
|
2010-10-24 12:18:33 -04:00 |
|
Justin Meyer
|
f3d610e064
|
beforedeactivate will fire before focusout - use that to our advantage when working with the change event.
|
2010-10-13 10:38:29 -04:00 |
|
Justin Meyer
|
88068f82c1
|
Make sure that focusin/focusout bubbles in non-IE browsers.
|
2010-10-13 10:35:28 -04:00 |
|
Colin Snover
|
1518ae1aed
|
Fix patch for #7150, which was not deleting the events object properly on plain JS objects. Thanks to jitter for catching it.
|
2010-10-12 18:49:37 -05:00 |
|
Colin Snover
|
ff6ceadbfd
|
Use a key name less likely to result in collisions for events on plain JS objects. Fixes bug #7150.
|
2010-10-11 23:35:18 -05:00 |
|
John Resig
|
1df5084c97
|
Handle some edge cases with binding events to the window object (which is also a plain object - causing some confusion). Fixes #7143.
|
2010-10-11 18:20:57 -04:00 |
|
jeresig
|
884de15fb9
|
Make sure that the unload event doesn't leak in IE - use jQuery's binding mechanism to make that happen.
|
2010-10-10 18:01:59 -04:00 |
|
jeresig
|
cbf9d874e5
|
Change event did not fire in IE when an explicit .focus() was used. Fixes #6374.
|
2010-10-09 19:04:15 -04:00 |
|
jeresig
|
79305ed146
|
Fix the case where live change was breaking if a live click was bound ahead of time. Very similar to #6359. Fixes #6505.
|
2010-10-09 18:16:08 -04:00 |
|
David Petersen
|
60744e8abd
|
Set event.LiveFired to undefined in specialSubmit handler so that click events bound before the submit won't prevent the submit to fire. Fixes #6359
|
2010-09-30 13:46:36 -04:00 |
|
Dave Reed
|
cb811c04b0
|
Using data() on JavaScript objects sets fields directly on the object. Note that events are now a property of a function (to avoid JSON serialization - and only in the case of JavaScript objects, not DOM nodes). Fixes #6807.
|
2010-09-29 06:46:25 -07:00 |
|
John Resig
|
ab77451843
|
Fix mis-type in commit e3c4e57897 . Thanks to @jdalton for the catch.
|
2010-09-28 20:13:40 -07:00 |
|
John Resig
|
e3c4e57897
|
Tweak the logic for fixing event.which. Fixes #2338.
|
2010-09-28 09:07:57 -07:00 |
|
Dave Methvin
|
adff8e45e2
|
If an inline handler returns false, call event.preventDefault(). Fixes #6337.
|
2010-09-24 18:02:31 -04:00 |
|
dmethvin
|
69994211b0
|
Don't copy event.originalTarget, it's a Netscape-specific property. Fixes #2814.
|
2010-09-24 17:44:48 -04:00 |
|
Robert Katic
|
da5706c974
|
Added support for map of events in live, die, delegate and undelegate. Fixes #6282.
|
2010-09-23 12:07:42 -04:00 |
|
jeresig
|
a7aa86d0b1
|
Fix missing var. Thanks to @jeff-themovie for the catch.
|
2010-09-22 16:56:48 -04:00 |
|
jeresig
|
c8dd49f756
|
Unify the means of detecting a window across the library. Fixes jQuery UI bug #5438 and jQuery bugs #6575 and 6088.
|
2010-09-22 16:41:51 -04:00 |
|
jeresig
|
9dc6e0c572
|
Applied the RegExp issues reported by Jeff Robinson here: http://jmrware.com/articles/2010/jqueryregex/jQueryRegexes.html Additionally broke out all remaining inline RegExp. Fixes #7062.
|
2010-09-22 09:16:28 -04:00 |
|
jeresig
|
be59693037
|
No need to set returnValue if preventDefault exists. Thanks kangax for the catch.
|
2010-09-20 10:16:36 -04:00 |
|
jeresig
|
acb162a697
|
Make sure that the removeEvent and buildFragment private functions are exposed (to help with access across modules). The final API for each of these is very much in flux and will likely change before the final release. Fixes #7011.
|
2010-09-08 18:13:35 -04:00 |
|
jeresig
|
bca5765502
|
Make sure that jQuery works even when the individual modules are loaded separately AND jQuery.noConflict(true) is used. Fixes #7011.
|
2010-09-08 13:54:33 -04:00 |
|
John Resig
|
1533bf7c77
|
Expose jQuery.uuid (use with caution) and make sure the expando property is used in the events module.
|
2010-04-24 14:16:27 -07:00 |
|
jeresig
|
8effe3a7de
|
Made it so that you no longer need to build jQuery in order to run the test suite (but you'll still need a checkout of QUnit and Sizzle, at least).
|
2010-03-23 12:12:16 -04:00 |
|
jeresig
|
f68b46d7ab
|
Make sure that special remove and teardown events get called when .die() is used. Additionally made sure that default actions are triggered when namespaced events are used. Fixes #6202 and #6250.
|
2010-03-09 12:22:25 -05:00 |
|
jeresig
|
9584e908a2
|
Added in Ben Alman's proposed event.namespace property (the property holds the namespaces specified in a call to trigger). Additionally fixes namespaces with .live(). Fixes #6208 and #6209.
|
2010-03-02 17:34:12 -05:00 |
|
jeresig
|
dcf0fa5048
|
More changes to get jQuery in line with JSLint.
|
2010-03-01 21:24:49 -05:00 |
|
jeresig
|
a4043cdcbf
|
Land some additional tweaks related to running through JSLint.
|
2010-03-01 18:19:29 -05:00 |
|
jeresig
|
a18f682012
|
Made some code tweaks related to running jQuery through JSLint (thanks to Lorin Larson for the JSLint run).
|
2010-03-01 12:44:56 -05:00 |
|
jeresig
|
36faab439a
|
No reason to double-bind the beforeunload event. Fixes #6113.
|
2010-02-27 10:03:43 -05:00 |
|
jeresig
|
42568db4c4
|
Merge branch 'master' of github.com:jquery/jquery
|
2010-02-27 09:02:18 -05:00 |
|
jeresig
|
a45372a4c5
|
Adding in .bind(name, false), .unbind(name, false) support - an easy way to just stop bubbling and the default action on an element. Fixes #6188.
|
2010-02-27 09:02:13 -05:00 |
|
brandonaaron
|
7d5da0ee03
|
Make sure events exist before trying to access them in jQuery.event.handle and removed unnecessary var statement. Fixes #6163.
|
2010-02-27 01:31:33 -06:00 |
|
jeresig
|
ba7195e3f9
|
Make it so that you can pass in event data to .click(), et. al. Fixes #6187.
|
2010-02-26 20:01:19 -05:00 |
|
jeresig
|
7f5179b654
|
Make sure that unbinding on a plain javascript object works correctly. Fixes #6184.
|
2010-02-26 11:32:12 -05:00 |
|
jeresig
|
28b489bfc8
|
Make sure that the correct type is set for live mouseenter/mouseleave events. Fixes #6169.
|
2010-02-26 11:23:49 -05:00 |
|
jeresig
|
26b0e913dd
|
Make sure that live events bubble unless explicitly told not to, like a normal event. Fixes #6182.
|
2010-02-26 09:26:14 -05:00 |
|
jeresig
|
da966573c3
|
Make sure that elements that have been removed also have their special events cleaned up. Fixes #6084.
|
2010-02-13 06:10:43 -05:00 |
|