mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-20 14:27:42 +00:00
Add telnet server
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user