mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
fullscreen prompt cookie saving, and more...
This commit is contained in:
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
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user