onKeyUp method

  1. @HostListener('keyup')
void onKeyUp()

Implementation

@HostListener('keyup')
void onKeyUp() {
  if (_focusLatch) {
    activate();
    _focusLatch = false;
  }
}