home · contact · privacy
Remove unnecessary condition.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 2 Nov 2020 04:52:49 +0000 (05:52 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 2 Nov 2020 04:52:49 +0000 (05:52 +0100)
new2/rogue_chat_nocanvas_monochrome.html

index 92ac22a55f405ee806d6df317039092fb96a3cf1..d06eb30e6d44a90a929f22f6b8ea21c9f446059c 100644 (file)
@@ -436,7 +436,7 @@ let tui = {
   },
   draw_input: function() {
     if (this.mode.has_input_prompt) {
-        for (let y = terminal.rows - this.height_input, i = 0; y < terminal.rows && i < this.input_lines.length; y++, i++) {
+        for (let y = terminal.rows - this.height_input, i = 0; i < this.input_lines.length; y++, i++) {
             terminal.write(y, this.window_width, this.input_lines[i]);
         }
     }
@@ -566,7 +566,7 @@ let explorer = {
 
 tui.inputEl.addEventListener('input', (event) => {
     if (tui.mode.has_input_prompt) {
-       let max_length = tui.window_width * terminal.rows - tui.input_prompt.length;
+        let max_length = tui.window_width * terminal.rows - tui.input_prompt.length;
         if (tui.inputEl.value.length > max_length) {
             tui.inputEl.value = tui.inputEl.value.slice(0, max_length);
         };