User quickstart docs README

This commit is contained in:
2021-04-05 17:33:00 +02:00
parent 9135090e73
commit 19cc7d0c28
2 changed files with 20 additions and 16 deletions

View File

@@ -30,21 +30,17 @@
submit();
}
}
if(command ==="" && e.key === "c")
{
command="c";
}
else if(command ==="c" && e.key === "n"){
command+="n";
}
else if(command ==="cn" && e.key === "f"){
if (command === "" && e.key === "c") {
command = "c";
} else if (command === "c" && e.key === "n") {
command += "n";
} else if (command === "cn" && e.key === "f") {
clear();
settings_open = true;
is_configured = true;
command = ""
}
else{
command="";
command = "";
} else {
command = "";
}
};
})();