1
0
Fork 0

🔧 Updated rollup config

This commit is contained in:
Joost De Cock 2019-07-19 15:09:05 +02:00
parent 18443cdfbf
commit 2a20b65fa2
105 changed files with 1171 additions and 902 deletions

View file

@ -236,12 +236,9 @@ Svg.prototype.renderText = function(point) {
};
Svg.prototype.renderCircle = function(point) {
return `<circle
cx="${point.x}"
cy="${point.y}"
r="${point.attributes.get("data-circle")}"
${point.attributes.renderIfPrefixIs("data-circle-")}
></circle>`;
return `<circle cx="${point.x}" cy="${point.y}" r="${point.attributes.get(
"data-circle"
)}" ${point.attributes.renderIfPrefixIs("data-circle-")}></circle>`;
};
/** Returns SVG code for a snippet */