mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-31 18:49:47 +08:00
build update
This commit is contained in:
parent
222629abdd
commit
3070479369
@ -17,6 +17,9 @@
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
/.github
|
||||
/demo
|
||||
.esdoc.json
|
||||
|
||||
# Development folders and files
|
||||
public
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
*
|
||||
* simple-keyboard v2.6.6
|
||||
* simple-keyboard v2.6.7
|
||||
* https://github.com/hodgef/simple-keyboard
|
||||
*
|
||||
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
*
|
||||
* simple-keyboard v2.6.6
|
||||
* simple-keyboard v2.6.7
|
||||
* https://github.com/hodgef/simple-keyboard
|
||||
*
|
||||
* Copyright (c) Francisco Hodge (https://github.com/hodgef)
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "simple-keyboard",
|
||||
"version": "2.6.6",
|
||||
"version": "2.6.7",
|
||||
"description": "On-screen Javascript Virtual Keyboard",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
@ -9,7 +9,7 @@
|
||||
"demo": "node scripts/demo.js",
|
||||
"test": "node scripts/test.js --env=jsdom",
|
||||
"postinstall": "node bin/postinstall",
|
||||
"prepublish": "npm run build",
|
||||
"prepublish": "npm run docs && npm run build",
|
||||
"docs": "esdoc"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -49,7 +49,7 @@ class App {
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Handles shift functionality
|
||||
*/
|
||||
handleShiftButton = () => {
|
||||
let layoutName = this.layoutName;
|
||||
|
@ -181,7 +181,7 @@ class SimpleKeyboard {
|
||||
|
||||
/**
|
||||
* Clear the keyboard’s input.
|
||||
* @param {string} [inputName] optional - the internal input to select
|
||||
* @param {string} [inputName] optional - the internal input to select
|
||||
*/
|
||||
clearInput = (inputName) => {
|
||||
inputName = inputName || this.options.inputName;
|
||||
|
Loading…
Reference in New Issue
Block a user