Prototype: Add contextmenu to Event.DOMEvents.

This commit is contained in:
Thomas Fuchs 2007-08-14 12:05:20 +00:00
parent c7a706f8cb
commit f86ac770d4
2 changed files with 4 additions and 1 deletions

View File

@ -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]

View File

@ -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: { },