Skip to content

Add russian language to layouts. #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build v0.3.9.
  • Loading branch information
valeriivoronkov committed Mar 22, 2021
commit dc1487d8811d9745f8312d766a42eee2265367bb
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<a name="0.3.8"></a>
## 0.3.8 (2021-03-22)
<a name="0.3.9"></a>
## 0.3.9 (2021-03-22)

* Build v0.3.5. ([ae4e654](https://github.com/vvxcoder/vue-touch-keyboard/commit/ae4e654))
* Build v0.3.6. ([4e74177](https://github.com/vvxcoder/vue-touch-keyboard/commit/4e74177))
* Build v0.3.7. ([f326c37](https://github.com/vvxcoder/vue-touch-keyboard/commit/f326c37))
* Build v0.3.8. ([03d9004](https://github.com/vvxcoder/vue-touch-keyboard/commit/03d9004))
* change version to 0.3.4. ([08af166](https://github.com/vvxcoder/vue-touch-keyboard/commit/08af166))


Expand Down
2 changes: 1 addition & 1 deletion dist/vue-touch-keyboard.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vue-touch-keyboard.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fork-vue-touch-keyboard",
"version": "0.3.8",
"version": "0.3.9",
"description": "Fork of virtual keyboard component for Vue.js",
"homepage": "https://github.com/vvxcoder/vue-touch-keyboard",
"main": "dist/vue-touch-keyboard.js",
Expand Down
11 changes: 9 additions & 2 deletions src/keyboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,18 @@ export default {
this.input.value = text;
this.setFocusToInput(caret);

if (this.change) this.change(text, addChar);
if (this.change) {
this.change(text, addChar);
console.log('in change section');
console.log('text = ', text);
console.log('addChar = ', addChar);
}

if (this.input.maxLength > 0 && text.length >= this.input.maxLength) {
// The value reached the maxLength
if (this.next) this.next();
if (this.next) {
this.next();
}
}

// trigger 'input' Event
Expand Down