Web Dev Solutions

Catalin Mititiuc

From 3b641620ab6c2fdfa6b551c019e44726064029c5 Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Sat, 18 May 2024 16:26:59 -0700 Subject: Add furniture --- src/map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map.js') diff --git a/src/map.js b/src/map.js index e5c9cd4..e82e809 100644 --- a/src/map.js +++ b/src/map.js @@ -5,6 +5,7 @@ const gb = svg.querySelector('.gameboard'); const bg = svg.querySelector('#background'); const imageMaps = svg.querySelector('#image-maps'); const grid = gb.querySelector('.grid'); +const dots = gb.querySelector('#dots'); if ('cols' in dataset && 'rows' in dataset) { const cellTemplate = svg.querySelector('#hex'); @@ -18,9 +19,8 @@ bg.style.transform = mtx; const bbox = grid.getBBox(); -bbox.height += 5; - setElAttrs(bg, bbox); +setElAttrs(dots, bbox) svg.setAttribute('viewBox', formatForViewBox(calcComputedBboxFor(gb))); function setElAttrs(el, attrs) { -- cgit v1.2.3