I have a kludge in angular application that checks dom tree regularly (using javascript function setinterval) and updates some stuff (this code is related to lack of some DOM tree events). It will take me a long time to move this functinality into angular-approved way and I'm not very fond of this migration idea: "don't touch it if it works" rule :) There is only one problem - it looks like setinterval forces whole angular application to check for changes. How can I suppress this issue? I want to disable change detection for this only timer.
Thank you in advance!