fix: purge stale 1-tap mobile pins, make remove pin button bold and prominent, and bust service worker cache

This commit is contained in:
2026-09-12 09:18:33 -07:00
parent 872be94476
commit 2bd6ebe302
4 changed files with 69 additions and 25 deletions
+15 -6
View File
@@ -28,7 +28,7 @@
<meta name="apple-mobile-web-app-title" content="FlockRadar">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/styles.css?v=7">
</head>
<body>
@@ -942,10 +942,19 @@
<!-- Leaflet Map JS -->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<!-- Data & Application Logic -->
<script src="data/portals.js"></script>
<script src="js/auth.js"></script>
<script src="js/radar.js"></script>
<script src="js/app.js"></script>
<!-- Data & Application Logic with Cache Busting -->
<script src="data/portals.js?v=7"></script>
<script src="js/auth.js?v=7"></script>
<script src="js/radar.js?v=7"></script>
<script src="js/app.js?v=7"></script>
<!-- Service Worker Instant Cache Invalidation -->
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(registrations => {
registrations.forEach(r => r.update());
});
}
</script>
</body>
</html>