prototype: Restrict Event.DOMEvents to include only events that can be supported in all browsers
This commit is contained in:
parent
ffa744e4aa
commit
d7da841c80
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Restrict Event.DOMEvents to include only events that can be supported in all browsers. [sam]
|
||||
|
||||
* Fix a failing test in base.html in Safari 2. [Tobie Langel]
|
||||
|
||||
* Fix Element#positionedOffset and Element#getOffsetParent for static elements on IE. [Thomas Fuchs]
|
||||
|
|
|
@ -19,11 +19,7 @@ Object.extend(Event, {
|
|||
DOMEvents: ['click', 'dblclick', 'mousedown', 'mouseup', 'mouseover',
|
||||
'mousemove', 'mouseout', 'keypress', 'keydown', 'keyup',
|
||||
'load', 'unload', 'abort', 'error', 'resize', 'scroll',
|
||||
'select', 'change', 'submit', 'reset', 'focus', 'blur',
|
||||
'DOMFocusIn', 'DOMFocusOut', 'DOMActivate',
|
||||
'DOMSubtreeModified', 'DOMNodeInserted',
|
||||
'NodeInsertedIntoDocument', 'DOMAttrModified',
|
||||
'DOMCharacterDataModified'],
|
||||
'select', 'change', 'submit', 'reset', 'focus', 'blur'],
|
||||
|
||||
cache: { },
|
||||
|
||||
|
|
Loading…
Reference in New Issue