Edit this page

up.event up.event.onEscape(listener)
JavaScript function

This feature is experimental. Please share your experiences so we know what to keep or change.

Registers an event listener to be called when the user presses the Escape key.

Example

up.event.onEscape(function(event) {
  console.log('Escape pressed!')
})

@function


Parameters

listener Function(Event)

The listener function that will be called when Escape is pressed.