The goog.ui.HoverCard.TriggerEvent Class

goog.ui.HoverCard.TriggerEvent
> goog.events.Event

goog.ui.HoverCard.TriggerEvent(type, target, anchor, opt_data)

Create a trigger event for specified anchor and optional data.

type {goog.ui.HoverCard.EventType}
Event type.
target {goog.ui.HoverCard}
Hovercard that is triggering the event.
anchor {Element}
Element that triggered event.
opt_data {Object=}
Optional data to be available in the TRIGGER event.

.anchor {Element}

Element that triggered the hovercard event.

.data {Object|undefined}

Optional data to be passed to the listener.

.defaultPrevented {boolean}

Inherited from goog.events.Event .

Whether the default action has been prevented. This is a property to match the W3C specification at {@link http://www.w3.org/TR/DOM-Level-3-Events/#events-event-type-defaultPrevented}. Must be treated as read-only outside the class.

.preventDefault()

Inherited from goog.events.Event .

Prevents the default action, for example a link redirecting to a url.

.propagationStopped_ {boolean}

Inherited from goog.events.Event .

Whether to cancel the event in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.returnValue_ {boolean}

Inherited from goog.events.Event .

Return value for in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.stopPropagation()

Inherited from goog.events.Event .

Stops event propagation.