www.spaceplanner.app

Web client to the spaceplanner API
git clone git://jacobedwards.org/www.spaceplanner.app
Log | Files | Refs

commit cd6e7869ba9e826d7703dddf9b3140e789e88288
parent bb201dfdf82cf4a5fa93cd4c1aa6046408ba7b9c
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Fri,  9 Aug 2024 12:05:14 -0700

Put floorplan data within a svg group

This will make it easier to export and such later.

Diffstat:
Mfiles/floorplans/floorplan/index.html | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/files/floorplans/floorplan/index.html b/files/floorplans/floorplan/index.html @@ -17,7 +17,9 @@ <script type="module" href="./svg.js"></script> <title>Floorplan</title> - <polyline id="walls"/> + <g id="floorplan_data"> + <polyline id="walls"/> + </g> </svg> </body> </html>