doc: fix documentation of Event and Event#element.

This commit is contained in:
Tobie Langel 2009-08-22 05:30:56 +02:00
parent a4561bda28
commit 641284a233
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
(function() {
/** section: DOM
* Event
* class Event
*
* The namespace for Prototype's event system.
*
@ -109,10 +109,11 @@
**/
function isRightClick(event) { return _isButton(event, 2) }
/**
/** deprecated
* Event.element(@event) -> Element
*
* Returns the DOM element on which the event occurred.
* Returns the DOM element on which the event occurred. This method
* is deprecated, use [[Event.findElement findElement]] instead.
**/
function element(event) {
event = Event.extend(event);