You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That not only clears the contents of the containing element and the Webcharts object(s), but the stylesheet as well.
Test notes
Open the developer console.
On the Elements tab expand the <head> element and verify that the last child node is a <style> element and that its styles include .crf-heat-map classes.
On the Console tab run d3.select('.crf-heat-map').node() and verify the CRF Heat Map <div> element is returned.
Run d3.select('.crf-heat-map').datum().destroy() and verify both the <style> element and <div> element are removed from the DOM.
The text was updated successfully, but these errors were encountered:
That not only clears the contents of the containing element and the Webcharts object(s), but the stylesheet as well.
Test notes
<head>
element and verify that the last child node is a<style>
element and that its styles include .crf-heat-map classes.d3.select('.crf-heat-map').node()
and verify the CRF Heat Map<div>
element is returned.d3.select('.crf-heat-map').datum().destroy()
and verify both the<style>
element and<div>
element are removed from the DOM.The text was updated successfully, but these errors were encountered: