🔧 Updated rollup config
This commit is contained in:
parent
18443cdfbf
commit
2a20b65fa2
105 changed files with 1171 additions and 902 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue