Skip to content

Commit

Permalink
1.28.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Sep 15, 2018
1 parent 0dbba02 commit 0eca182
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 26 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@ Wiki: [Home](https://github.com/Mottie/Keyboard/wiki/Home) | [FAQ](https://githu

Only the latest changes will be shown below, see the [wiki log](https://github.com/Mottie/Keyboard/wiki/Log) to view older versions.

### Version 1.28.6 (2018-09-15)

* Core:
* Fix tab key insertion in textarea.
* Typing:
* Prevent occasional focus error.
* Meta:
* Update dependencies.

### Version 1.28.5 (2018-07-28)

* Core:
Expand All @@ -164,10 +173,3 @@ Only the latest changes will be shown below, see the [wiki log](https://github.c

* Scramble:
* Use `crypto.getRandomValues` for scramble. See [pull #678](https://github.com/Mottie/Keyboard/pull/678); thanks [@lsching17](https://github.com/lsching17)!

### Version 1.28.3 (2018-04-23)

* Core:
* Clear opening flag. Fixes [issue #668](https://github.com/Mottie/Keyboard/issues/668).
* Meta:
* Update dependencies.
10 changes: 5 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-cli": "^1.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-qunit": "^2.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-qunit": "^3.0.1",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0"
}
}
4 changes: 2 additions & 2 deletions dist/js/jquery.keyboard.extension-all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-typing.min.js

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

6 changes: 3 additions & 3 deletions dist/js/jquery.keyboard.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery UI Virtual Keyboard v1.28.5 *//*
/*! jQuery UI Virtual Keyboard v1.28.6 *//*
Author: Jeremy Satterfield
Maintained: Rob Garrison (Mottie on github)
Licensed under the MIT License
Expand Down Expand Up @@ -42,7 +42,7 @@ http://www.opensource.org/licenses/mit-license.php
var $keyboard = $.keyboard = function (el, options) {
var o, base = this;

base.version = '1.28.5';
base.version = '1.28.6';

// Access to jQuery and DOM versions of element
base.$el = $(el);
Expand Down Expand Up @@ -890,7 +890,7 @@ http://www.opensource.org/licenses/mit-license.php
// Added a flag to prevent from tabbing into an input, keyboard opening, then adding the tab
// to the keyboard preview area on keyup. Sadly it still happens if you don't release the tab
// key immediately because keydown event auto-repeats
if (base.tab && o.tabNavigation && !o.lockInput) {
if (base.tab && !o.lockInput) {
base.shiftActive = e.shiftKey;
// when switching inputs, the tab keyaction returns false
var notSwitching = $keyboard.keyaction.tab(base);
Expand Down
4 changes: 2 additions & 2 deletions dist/js/jquery.keyboard.min.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions js/jquery.keyboard.extension-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀▀██
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
*/
/*! jQuery UI Virtual Keyboard (1.28.5) - ALL Extensions + Mousewheel */
/*! jQuery UI Virtual Keyboard (1.28.6) - ALL Extensions + Mousewheel */
/*! jQuery UI Virtual Keyboard Alt Key Popup v2.0.0 *//*
* for Keyboard v1.18+ only (2018-04-19)
*
Expand Down Expand Up @@ -1983,7 +1983,9 @@ $.keyboard = $.keyboard || {};
base.showSet();
// Alt key will shift focus to the menu - doesn't work in Windows
setTimeout( function() {
base.$preview.focus();
if (base.$preview) {
base.$preview.focus();
}
}, 200 );
return;
}
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.keyboard.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery UI Virtual Keyboard v1.28.5 *//*
/*! jQuery UI Virtual Keyboard v1.28.6 *//*
Author: Jeremy Satterfield
Maintained: Rob Garrison (Mottie on github)
Licensed under the MIT License
Expand Down Expand Up @@ -42,7 +42,7 @@ http://www.opensource.org/licenses/mit-license.php
var $keyboard = $.keyboard = function (el, options) {
var o, base = this;

base.version = '1.28.5';
base.version = '1.28.6';

// Access to jQuery and DOM versions of element
base.$el = $(el);
Expand Down
2 changes: 1 addition & 1 deletion keyboard.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "keyboard",
"title": "Keyboard",
"version": "1.28.5",
"version": "1.28.6",
"description": "Virtual Keyboard using jQuery UI",
"author": {
"name": "Jeremy Satterfield",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "virtual-keyboard",
"title": "Keyboard",
"description": "Virtual Keyboard using jQuery UI",
"version": "1.28.5",
"version": "1.28.6",
"author": {
"name": "Jeremy Satterfield",
"url": "https://github.com/jsatt"
Expand Down

0 comments on commit 0eca182

Please sign in to comment.