How do I use mutationobserver instead of mutation events?

大兔子大兔子 提交于 2020-01-04 03:38:54

问题


I am trying to create my first streamgraph with D3.js. I am starting with a working example which incorporates a tooltip from code posted on-line, http://bl.ocks.org/WillTurman/4631136:

When I copy the index.html and data.csv files to my PC (Windows 7), I am able to see the streamgraph in a browser (Firefox). However, I get a JS warning, "Use of Mutation Events is deprecated. Use MutationObserver instead."

What lines of code correspond to the Mutation Event? And how should I edit them to use a MutationObserver instead?

I am new to D3 and javascript. Although I found some discussion of mutation events and MutationObservers on-line, I didn't see any examples that were basic enough for me to understand and apply to my situation. I would appreciate any tips.


回答1:


This is something that will need to be changed in the D3 source. As a user (and certainly as a beginner), you don't need to worry about this -- the warning is only relevant to the developers. Feel free to open an issue about this.



来源:https://stackoverflow.com/questions/19965211/how-do-i-use-mutationobserver-instead-of-mutation-events

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!