Prototype: Add contextmenu to Event.DOMEvents.
This commit is contained in:
parent
c7a706f8cb
commit
f86ac770d4
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Add contextmenu to Event.DOMEvents. [Thomas Fuchs]
|
||||
|
||||
* Fix readAttribute-related failure in form.html in IE. [sam, Andrew Dupont]
|
||||
|
||||
* Fix failing dom.html and selector.html tests in IE. [Tobie Langel, Andrew Dupont]
|
||||
|
|
|
@ -19,7 +19,8 @@ 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'],
|
||||
'select', 'change', 'submit', 'reset', 'focus', 'blur',
|
||||
'contextmenu'],
|
||||
|
||||
cache: { },
|
||||
|
||||
|
|
Loading…
Reference in New Issue