Add telnet server

This commit is contained in:
Ian Renton
2026-09-11 16:23:10 +01:00
parent ee45a15b4e
commit e3df512b9e
9 changed files with 36 additions and 15 deletions
+9
View File
@@ -538,6 +538,15 @@ function displayIntroBox() {
$("#intro-box-dismiss").click(function () {
localStorage.setItem("intro-box-dismissed", true);
});
// Do the same with the "telnet" intro box, but only show it if the user has dismissed the normal intro box once,
// to avoid two boxes on first page load.
if (localStorage.getItem("intro-box-telnet-dismissed") == null && localStorage.getItem("intro-box-dismissed") != null) {
$("#intro-box-telnet").show();
}
$("#intro-box-telnet-dismiss").click(function () {
localStorage.setItem("intro-box-telnet-dismissed", true);
});
}
// Mark a callsign-band-mode combination as worked (or unmark it). Persist this to localStorage.