Events

annotations.blur

Detailed viewer event reference for annotations.blur.

Summary

  • Category: Annotations
  • Event: annotations.blur
  • Trigger: Fires when annotation focus is cleared.

Payload

[ImmutableList<Annotation>];

Payload fields

Payload is not an object literal. Use the declaration above and runtime guards when handling this event.

Subscription example

function onEvent(payload) {
  console.log('annotations.blur', payload);
}

instance.addEventListener('annotations.blur', onEvent);
instance.removeEventListener('annotations.blur', onEvent);