event.js
No description.

File Location

/goog/events/event.js

Classes

goog.events.Event
A base class for event objects, so that they can support preventDefault and stopPropagation.

Public Protected Private

Global Functions

goog.events.Event.preventDefault(e)
Prevents the default action. It is equivalent to e.preventDefault(), but can be used as the callback argument of goog.events.listen without declaring another function.
Arguments:
e : !goog.events.Event
An event.
code »
goog.events.Event.stopPropagation(e)
Stops the propagation of the event. It is equivalent to e.stopPropagation(), but can be used as the callback argument of goog.events.listen without declaring another function.
Arguments:
e : !goog.events.Event
An event.
code »

Directory events

File Reference