Merge pull request #109 from astro/fix-barcode-on-chrome

barcode.js: try to fix for chrome
This commit is contained in:
rys ostrovid 2017-11-07 20:55:38 +01:00 committed by GitHub
commit 84084096a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 && key != " " ) { // e.g. F-Keys are 112 to 123, A-Za-z0-9 all are 0.
} else if ( key && key != " " ) {
console.log( "some input: " + barcodeBuf + "[" + key + "] <= {" + event.keyCode + "}" )
barcodeBuf += key
showBarcode( barcodeBuf )