Skip to content

Commit 4d5de96

Browse files
authored
Merge pull request #859 from disarticulate/main
fix checkbox input with required class for enableNtripCaster index.html
2 parents 549baf3 + 2f53cf3 commit 4d5de96

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Firmware/RTK_Everywhere/AP-Config/index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1691,8 +1691,9 @@
16911691
</div>
16921692

16931693
<div class="form-check mt-3">
1694-
<input type="checkbox" value="" id="enableNtripCaster" onClick="tcpServerBoxes()">
1695-
<label for="enableNtripCaster">NTRIP Caster</label>
1694+
<label class="form-check-label" for="enableNtripCaster">NTRIP Caster</label>
1695+
<input class="form-check-input" type="checkbox" value="" id="enableNtripCaster" onClick="tcpServerBoxes()">
1696+
16961697
<span class="tt" data-bs-placement="right"
16971698
title="If enabled, device will emulate an NTRIP caster, allowing inbound NTRIP Clients to connect and get RTCM over the given port.">
16981699
<span class="icon-info-circle text-primary ms-2"></span>
@@ -2569,4 +2570,4 @@
25692570
</script>
25702571
</body>
25712572

2572-
</html>
2573+
</html>

Firmware/RTK_Everywhere/form.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// python main_js_zipper.py
2727

2828
static const uint8_t main_js[] PROGMEM = {
29-
0x1F, 0x8B, 0x08, 0x08, 0xAE, 0x0F, 0x15, 0x69, 0x02, 0xFF, 0x6D, 0x61, 0x69, 0x6E, 0x2E, 0x6A,
29+
0x1F, 0x8B, 0x08, 0x08, 0x82, 0x89, 0x17, 0x69, 0x02, 0xFF, 0x6D, 0x61, 0x69, 0x6E, 0x2E, 0x6A,
3030
0x73, 0x2E, 0x67, 0x7A, 0x69, 0x70, 0x00, 0xED, 0x7D, 0x7B, 0x5F, 0x1B, 0x39, 0xB2, 0xE8, 0xFF,
3131
0xF9, 0x14, 0x5A, 0xDF, 0xBD, 0x6B, 0xB3, 0x01, 0xD3, 0x36, 0x8F, 0x40, 0x08, 0x39, 0x97, 0x00,
3232
0x49, 0xB8, 0xCB, 0xC3, 0x8B, 0xC9, 0xCC, 0x64, 0x72, 0x72, 0x38, 0x8D, 0x2D, 0x4C, 0x9F, 0xD8,
@@ -1145,7 +1145,7 @@ static const uint8_t main_js[] PROGMEM = {
11451145
// python index_html_zipper.py
11461146

11471147
static const uint8_t index_html[] PROGMEM = {
1148-
0x1F, 0x8B, 0x08, 0x08, 0xAE, 0x0F, 0x15, 0x69, 0x02, 0xFF, 0x69, 0x6E, 0x64, 0x65, 0x78, 0x2E,
1148+
0x1F, 0x8B, 0x08, 0x08, 0x82, 0x89, 0x17, 0x69, 0x02, 0xFF, 0x69, 0x6E, 0x64, 0x65, 0x78, 0x2E,
11491149
0x68, 0x74, 0x6D, 0x6C, 0x2E, 0x67, 0x7A, 0x69, 0x70, 0x00, 0xED, 0x7D, 0xD9, 0x76, 0xDB, 0x4A,
11501150
0x92, 0xE0, 0xFB, 0xFD, 0x8A, 0x6C, 0xF6, 0x74, 0x5B, 0xEE, 0x91, 0x28, 0x90, 0x94, 0x64, 0x59,
11511151
0x65, 0xF3, 0x1C, 0xAD, 0xB6, 0xA6, 0x24, 0x99, 0x2D, 0xCA, 0x75, 0x97, 0x39, 0x33, 0xF7, 0x40,

0 commit comments

Comments
 (0)