View roam-lucky-idea.js
var randomButton = document.querySelector('#random-button'); | |
if (randomButton != null) { | |
randomButton.parentNode.removeChild(randomButton); | |
} | |
function getEventHandlers(element) { | |
for (var prop in element) { | |
if (prop.includes('reactEventHandlers')) { | |
return element[prop]; | |
} | |
} |
View index.html
<div id="wrapper"> | |
<canvas id="chart"></canvas> | |
</div> |