mattbrictson/tomo

View on GitHub
readme_images/console.js

Summary

Maintainability
A
0 mins
Test Coverage
document.addEventListener("DOMContentLoaded", function() {
  document.querySelector("button").addEventListener("click", function() {
    html2canvas(document.querySelector("pre")).then(canvas => {
      window.open(canvas.toDataURL());
    });
  });
});