Ver código fonte

fix paste into serial console

Fabian 3 anos atrás
pai
commit
da4470233c
1 arquivos alterados com 4 adições e 1 exclusões
  1. 4 1
      src/browser/serial.js

+ 4 - 1
src/browser/serial.js

@@ -228,7 +228,10 @@ function SerialAdapterXtermJS(element, bus)
     term.write("This is the serial console. Whatever you type or paste here will be sent to COM1");
 
     term["onData"](function(data) {
-        bus.send("serial0-input", data.charCodeAt(0));
+        for(let i = 0; i < data.length; i++)
+        {
+            bus.send("serial0-input", data.charCodeAt(i));
+        }
     });
 
     bus.register("serial0-output-char", function(chr)