Nicholas-Toh

Results 1 comments of Nicholas-Toh

Here is a workaround: ``` const startObserving = (domNode) => { const observer = new MutationObserver(mutations => { mutations.forEach(function (mutation) { const element = Array.from(mutation.addedNodes).filter( element => { if (element.classList)...