Created
December 9, 2019 12:50
-
-
Save undrafted/5d6da4d8f2d0b8e69eaa85549384552c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const svg = document.querySelector("svg"); | |
const bbox = svg.getBBox(); | |
svg.setAttribute("viewBox", [bbox.x, bbox.y, bbox.width, bbox.height].join(" ")); | |
console.log(svg.outerHTML); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment