kangax
|
b75bc189ec
|
Fix Event#element accessing nonexistent tagName property (e.g. when element is a document)
|
2008-09-02 18:58:50 -07:00 |
Andrew Dupont
|
a1d89b4503
|
Fixed a faulty variable assignment, the result of my own idiocy last week.
|
2008-04-04 12:55:59 -05:00 |
Andrew Dupont
|
55e5d645e1
|
Fix issues where Firefox improperly returns the wrong node from a call to Event.element. Also fixes possible exception in Event.element in IE.
|
2008-03-28 13:13:16 -05:00 |
Andrew Dupont
|
0c676269e9
|
Fix issue where Safari 3 deletes custom properties from the document object when the page is returned to via the back button.
|
2008-03-28 12:48:42 -05:00 |
Tobie Langel
|
32b1b6b7cd
|
prototype: Fix Event#pointer in IE standard mode. Closes #9920.
|
2008-03-19 07:01:49 +00:00 |
Andrew Dupont
|
a1ec25cddb
|
Prevent DOM node expandos _countedByPrototype and _prototypeEventID from being serialized into (inner|outer)HTML in IE. Closes #10909. [dcpedit, Tobie Langel, Andrew Dupont]
|
2008-01-25 18:49:40 +00:00 |
Tobie Langel
|
6f0def19c5
|
prototype: Add document.loaded, a boolean that is set to true once dom:loaded is fired.
|
2008-01-04 00:30:53 +00:00 |
Tobie Langel
|
f553d2210e
|
prototype: Add some missing semicolons to the source tree. Closes #10659.
|
2007-12-31 16:16:14 +00:00 |
Tobie Langel
|
23f7cb642c
|
prototype: Fix incorrect variable declaration in Event.fire. Closes #10329.
|
2007-12-20 13:10:42 +00:00 |
Tobie Langel
|
0b6a6e2f2f
|
prototype: Ensure Event#fire always returns an extended event. Make Event#findElement's expression argument optional. Perf optimizations for Event#findElement.
|
2007-11-13 21:48:09 +00:00 |
Andrew Dupont
|
67cf750956
|
Add event.stopped, a boolean that is set to when Event#stop is called.
|
2007-10-26 19:15:35 +00:00 |
Tobie Langel
|
4dece6b277
|
Use String#include wherever possible.
|
2007-10-22 22:16:32 +00:00 |
Tobie Langel
|
827c8c6b48
|
prototype: Prevent a Firefox bug from throwing errors on page load/unload. Closes #5393, #9421.
|
2007-10-22 01:04:17 +00:00 |
Sam Stephenson
|
d114e76e97
|
prototype: Fix Event#is(Left|Middle|Right)Click in IE. Closes #7520.
|
2007-10-17 13:26:49 +00:00 |
Andrew Dupont
|
aada1abb56
|
* Ensure Event.* generic methods work in IE, even when the event is not extended. [Viktor Kojouharov, Andrew Dupont]
|
2007-10-16 05:11:42 +00:00 |
Sam Stephenson
|
bfd5353cbf
|
prototype: Don't translate "keypress" events into "keydown" events.
|
2007-10-16 03:36:58 +00:00 |
Sam Stephenson
|
3dd7bd5b4b
|
prototype: Cross-browser Event#isLeftClick with the addition of is(Middle|Right)Click. Closes #7520.
|
2007-10-16 03:19:38 +00:00 |
Sam Stephenson
|
115d3e456d
|
prototype: Namespace all custom event names to avoid conflicts with native DOM events.
|
2007-10-11 06:00:45 +00:00 |
Sam Stephenson
|
8ca43a5c88
|
prototype: Fix contentloaded event initialization in IE. Closes #9457, #9488, #9707.
|
2007-10-08 22:37:15 +00:00 |
Sam Stephenson
|
b2f884b4fa
|
prototype: Event handlers are now bound to the observed element, not the event's target element.
|
2007-08-17 16:17:26 +00:00 |
Thomas Fuchs
|
f86ac770d4
|
Prototype: Add contextmenu to Event.DOMEvents.
|
2007-08-14 12:05:20 +00:00 |
Sam Stephenson
|
11f25aa995
|
prototype: Make sure Element#observe is always chainable.
|
2007-08-11 19:53:39 +00:00 |
Sam Stephenson
|
d2974cfca3
|
prototype: Make sure Element#stopObserving is always chainable.
|
2007-08-11 19:07:21 +00:00 |
Sam Stephenson
|
14ea77ef39
|
prototype: Event.fire/Element#fire now returns the newly-fired event instead of the event's target element.
|
2007-08-11 18:46:02 +00:00 |
Sam Stephenson
|
d7da841c80
|
prototype: Restrict Event.DOMEvents to include only events that can be supported in all browsers
|
2007-08-11 18:14:20 +00:00 |
Sam Stephenson
|
2fbb49001c
|
prototype: Make sure event handlers and their wrappers are removed from the cache by Event.stopObserving.
|
2007-08-09 23:45:59 +00:00 |
Sam Stephenson
|
df71a6b54f
|
prototype: Add Object.isString, Object.isNumber, and Object.isUndefined, and clean up the source to make use of Object.isXXX where possible.
|
2007-08-08 23:19:45 +00:00 |
Sam Stephenson
|
12f87a77a7
|
prototype: We can just use HTMLEvents in every non-IE browser instead of special-casing for Safari 2
|
2007-08-07 19:33:37 +00:00 |
Thomas Fuchs
|
cbaec757e2
|
Prototype: Fix event extensions and custom events firing for Safari 2.0
|
2007-08-07 14:55:34 +00:00 |
Sam Stephenson
|
aa4602b459
|
prototype: Merge -r7242:HEAD from ../branches/1-6-0-events. Adds support for DOM-based custom events with Event.fire/Element.Methods.fire, cross-browser DOMContentLoaded support, extended and normalized event objects, and improvements to the observe and stopObserving APIs.
|
2007-08-04 07:20:45 +00:00 |
Sam Stephenson
|
b61bca10da
|
prototype: Event.findElement behaves as expected when the element passed matches the given selector. Closes #8395.
|
2007-05-24 07:13:55 +00:00 |
Sam Stephenson
|
55b658ac57
|
prototype: Event.findElement now uses Element#up (and as a result can take a CSS selector instead of just a tag name).
|
2007-05-18 01:44:26 +00:00 |
Thomas Fuchs
|
bbd0e6eb54
|
Make Event.element extend the returned element. Closes #7870.
|
2007-04-17 17:31:20 +00:00 |
Thomas Fuchs
|
d1481932b9
|
Prototype: Add unified Browser detection by providing Prototype.Browser.(IE|Gecko|WebKit|Opera) booleans. Closes #6800. [savetheclocktower]
|
2007-02-19 22:23:10 +00:00 |
Sam Stephenson
|
bb4d189b37
|
prototype: Reorganize the source tree.
|
2007-01-18 22:24:27 +00:00 |