MCPcopy Create free account
hub / github.com/microsoft/SandDance / handleOverEvent

Method handleOverEvent

docs/app/js/sanddance-app.js:94873–94877  ·  view source on GitHub ↗
(event)

Source from the content-addressed store, hash-verified

94871 if (eventType === LEAVE_EVENT_TYPE) this.enableLeaveEvent = enabled;
94872 }
94873 handleOverEvent(event) {
94874 if (this.enableOverEvent) {
94875 if (event.type === "mouseover") this._emit(OVER_EVENT_TYPE, event);
94876 }
94877 }
94878 handleOutEvent(event) {
94879 if (this.enableOutEvent) {
94880 if (event.type === "mouseout") this._emit(OUT_EVENT_TYPE, event);

Callers 1

constructorMethod · 0.95

Calls 1

_emitMethod · 0.95

Tested by

no test coverage detected