Angular prevent external library to trigger change detection

240 Views Asked by At

I understand that when Angular finds this code in a component

    @HostListener('window:keyup')
    handler(event) { ... }

it attaches handler to the global event listener and every time a keyup event is fired it invokes handler and then triggers change detection.

This question is not about how to run handler outside Angular.

This question is about what if handler is in an external library I am consuming, and I want to prevent Angular to trigger change detection. Is there a way to opt out and if so how ?

0

There are 0 best solutions below