Ignore space in Barcode Key Handler

Fixes my use case of scrolling down to my name with space....
This commit is contained in:
Jonathan Sieber 2017-04-28 20:35:31 +02:00 committed by GitHub
parent daf9f838c8
commit cebfcdb7e8
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ function barcodeKeyPress( event ) { // takes input from either keyboard or barco
barcodeBuf = hideBarcode()
}
event.preventDefault()
} else if ( event.keyCode == 0 ) { // e.g. F-Keys are 112 to 123, A-Za-z0-9 all are 0.
} else if ( event.keyCode == 0 && key != " " ) { // e.g. F-Keys are 112 to 123, A-Za-z0-9 all are 0.
console.log( "some input: " + barcodeBuf + "[" + key + "] <= {" + event.keyCode + "}" )
barcodeBuf += key
showBarcode( barcodeBuf )