v2.3.3
Fixed
- Obscure mutation observer bug when multiple mutations from different parts of the dom happen AND the first mutation was unrelated to the rest, a
return
statement inside a for loop would stop the rest of the mutations from being processed. We changed it tocontinue
so all mutations would get processed and we are good to go! #456