aboutsummaryrefslogtreecommitdiffstats
path: root/app/svg.js
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-11-08 22:05:01 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-11-08 22:05:01 +0200
commit277ffe2cab8c711427b979fbc057c7d04932398e (patch)
treecf14de72a58ac1c0712590cef7805518604cdb89 /app/svg.js
parenta9a0070662c2494b37528d27d7420f3da33e749d (diff)
downloadhousing-277ffe2cab8c711427b979fbc057c7d04932398e.tar.zst
Update DOM
Diffstat (limited to 'app/svg.js')
-rw-r--r--app/svg.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/svg.js b/app/svg.js
index ad63910..92bd825 100644
--- a/app/svg.js
+++ b/app/svg.js
@@ -2,10 +2,10 @@ import { LineString, Point, Polygon } from "geom";
export class SvgOptions {
attributes;
- styles;
- id;
- classes;
children;
+ classes;
+ id;
+ styles;
/**
* @param {Object} [options]
@@ -17,10 +17,10 @@ export class SvgOptions {
*/
constructor({ attributes = {}, styles = {}, id = "", classes = [], children = [] } = {}) {
this.attributes = attributes;
- this.styles = styles;
- this.id = id;
- this.classes = classes;
this.children = children;
+ this.classes = classes;
+ this.id = id;
+ this.styles = styles;
}
}