Event
The window
object provides an event system for responding to various actions in your application:
Event Registration
Register event handlers using window.on()
:
Standard Events
paste
- Fires when any data is pastedcopy
- Fires when any data is copied to the clipboardsystem_focus_changed
- Fires whenever the system's tab changes focusframe_end
- Executes after the main code runs each frame, useful for cleanup or post-processing
Custom Events
You can create and trigger your own events:
Important Notes
Event names are case-sensitive
Multiple handlers can be registered for the same event
Handlers execute in the order they were registered
Custom events are useful for decoupling application components
The
window.emit()
method can be used to manually trigger any event
Last updated
Was this helpful?