fullscreen prompt cookie saving, and more...

This commit is contained in:
legop3
2026-05-19 21:52:03 -04:00
parent 3a2c1bee35
commit 064aaee76c
11 changed files with 183 additions and 186 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -11,8 +11,8 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
<title>Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-BWZIF1Sp.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-jwQkh99Y.css">
<script type="module" crossorigin src="/assets/index-DHhBFQ9m.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Dd7xX8GI.css">
</head>
<body>
<div id="root"></div>
@@ -114,7 +114,7 @@ function buildVoteStatus() {
else noCount += 1;
});
const onlineCount = yesCount + noCount;
const gatePassed = yesCount > noCount;
const gatePassed = eligibleCount === 0 ? true : yesCount > noCount;
return {
yesCount,
noCount,