Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/import_mapsheets.js')
-rw-r--r--src/import_mapsheets.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/import_mapsheets.js b/src/import_mapsheets.js
deleted file mode 100644
index 2e1b0fc..0000000
--- a/src/import_mapsheets.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import mapsheets from './assets/images/mapsheets.svg';
-
-const useEls = document.querySelectorAll('svg use[data-href*="mapsheets.svg"');
-
-useEls.forEach(el => {
- const href = el.dataset.href.replace('mapsheets.svg', mapsheets.split('/').pop());
- el.setAttributeNS(null, 'href', href);
-});