(event)
| 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); |