ReadonlynameThe event name.
ReadonlyoffRemoves the current callback from future interactions of this event.
Path this event has followed. See module:utils/emittermixin~Emitter#delegate.
The value which will be returned by module:utils/emittermixin~Emitter#fire.
It's undefined by default and can be changed by an event listener:
dataController.fire( 'getSelectedContent', ( evt ) => {
// This listener will make `dataController.fire( 'getSelectedContent' )`
// always return an empty DocumentFragment.
evt.return = new DocumentFragment();
// Make sure no other listeners are executed.
evt.stop();
} );
ReadonlysourceThe object that fired the event.
ReadonlystopStops the event emitter to call further callbacks for this event interaction.
The event object passed to event callbacks. It is used to provide information about the event as well as a tool to manipulate it.