Fix: load customize.js right after roles.js, BEFORE app/map

customize.js was loading last — saved colors restored AFTER the
map already created markers with default colors. Now loads right
after roles.js, before app.js. ROLE_STYLE colors are updated
before any page renders.
This commit is contained in:
you
2026-03-23 03:41:29 +00:00
parent c13de6f7d7
commit 48de8f99b3
+1 -1
View File
@@ -82,6 +82,7 @@
<script src="vendor/qrcode.js"></script>
<script src="roles.js?v=1774236560"></script>
<script src="customize.js?v=1774237289" onerror="console.error('Failed to load:', this.src)"></script>
<script src="region-filter.js?v=1774325000"></script>
<script src="hop-resolver.js?v=1774223973"></script>
<script src="hop-display.js?v=1774221932"></script>
@@ -101,6 +102,5 @@
<script src="observer-detail.js?v=1774219440" onerror="console.error('Failed to load:', this.src)"></script>
<script src="node-analytics.js?v=1774126708" onerror="console.error('Failed to load:', this.src)"></script>
<script src="perf.js?v=1774236560" onerror="console.error('Failed to load:', this.src)"></script>
<script src="customize.js?v=1774236560" onerror="console.error('Failed to load:', this.src)"></script>
</body>
</html>