Skip to content

Commit b08f068

Browse files
Build v0.3.11.
1 parent d4d0764 commit b08f068

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
<a name="0.3.10"></a>
2-
## 0.3.10 (2021-03-23)
1+
<a name="0.3.11"></a>
2+
## 0.3.11 (2021-03-23)
33

4+
* Build v0.3.10. ([d4d0764](https://github.com/vvxcoder/vue-touch-keyboard/commit/d4d0764))
45
* Build v0.3.5. ([ae4e654](https://github.com/vvxcoder/vue-touch-keyboard/commit/ae4e654))
56
* Build v0.3.6. ([4e74177](https://github.com/vvxcoder/vue-touch-keyboard/commit/4e74177))
67
* Build v0.3.7. ([f326c37](https://github.com/vvxcoder/vue-touch-keyboard/commit/f326c37))

dist/vue-touch-keyboard.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-touch-keyboard.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fork-vue-touch-keyboard",
3-
"version": "0.3.10",
3+
"version": "0.3.11",
44
"description": "Fork of virtual keyboard component for Vue.js",
55
"homepage": "https://github.com/vvxcoder/vue-touch-keyboard",
66
"main": "dist/vue-touch-keyboard.js",

src/keyboard.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,12 @@ export default {
254254
if (this.options.useKbEvents) {
255255
let e = document.createEvent("Event");
256256
e.initEvent("keydown", true, true);
257+
console.log('line 256');
257258
e.which = e.keyCode = addChar.charCodeAt();
259+
console.log('e in line 259 = ', e);
258260
if (this.input.dispatchEvent(e)) {
259261
text = this.insertChar(caret, text, addChar);
262+
console.log('text after call insertChar in dispatch', text);
260263
}
261264
} else {
262265
text = this.insertChar(caret, text, addChar);

0 commit comments

Comments
 (0)