Hi.
I have been requested to use a MutationObserver instead of mutation events. Using a MutationObserver was the first implementation in my add on, but it didn’t work - so I had to use mutation events.
The simple example (derived from the examples in the docs)
var observer = new MutationObserver(function(mutations) {});
generates an error message:
ReferenceError: MutationObserver is not defined
So how can the reviewers request something that doesn’t work? Or is there a possibility to make it work?