This commit is contained in:
Matt Pass
2020-02-28 22:58:52 +00:00
committed by GitHub
parent f6916c732b
commit b896e8a82e

View File

@@ -35,7 +35,7 @@ key = function(e) {
commandHistory[commandHistory.length-1] = "[[ICEcoder]]:"+currentCommand;
}
}
// If ee have at least some items in history, step back a level and display the previous command
// If we have at least some items in history, step back a level and display the previous command
if (currentLine > 0) {
currentLine--;
document.getElementById('command').value = commandHistory[currentLine].replace("[[ICEcoder]]:","");