kiosk-virtual-keyboard
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "kiosk-virtual-keyboard", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "An electron based virtual keyboard. Uses electron's sendInputEvent api to implement a simple customizable soft keyboard.", | ||
@@ -5,0 +5,0 @@ "author": "Austin Ames", |
@@ -143,2 +143,9 @@ const DEFAULT_LANGUAGE = 'en' | ||
setLanguage (lang) { | ||
const languageExist = Object.keys(keyboardLayout).find(item => item === lang) | ||
if (languageExist) { | ||
this.language = lang | ||
} | ||
} | ||
getKeyboardLayout () { | ||
@@ -145,0 +152,0 @@ const layoutName = this.language + (this.withNumeric ? ':with-numpad': '') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40841
1035