We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just for convenience, it would be nice:
https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
It would be even nicer if the Event Stream handled the creation and destruction of the observer automatically to avoid typing imperative code like:
const observer = new MutationObserver(callback); observer.observe(targetNode, config); observer.disconnect();
RxJS example:
https://soufatn.gitbook.io/rxjs-book/summary/rxjs_bindings/dom/mutation_observers/from_mutation_observer
The text was updated successfully, but these errors were encountered:
I’m not developing any new features to Bacon anymore. If you come up with a good pull request including tests etc I can merge it.
OTOH you can create your own helper for this without adding it to Bacon core just as well.
Sorry, something went wrong.
No branches or pull requests
Just for convenience, it would be nice:
https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
It would be even nicer if the Event Stream handled the creation and destruction of the observer automatically to avoid typing imperative code like:
RxJS example:
https://soufatn.gitbook.io/rxjs-book/summary/rxjs_bindings/dom/mutation_observers/from_mutation_observer
The text was updated successfully, but these errors were encountered: