Skip to content

Commit ece64c0

Browse files
committed
version bump
1 parent 636e92e commit ece64c0

8 files changed

+16
-18
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ Wiki: [Home](https://github.com/Mottie/Keyboard/wiki/Home) | [FAQ](https://githu
8888

8989
Only the latest changes will be shown below, see the wiki log to view older versions.
9090

91+
### Version 1.25.2 (8/18/2015)
92+
93+
* Caret extension:
94+
* Include `null` when using `getComputedStyle` to prevent errors in older browsers. Fixes [issue #384](https://github.com/Mottie/Keyboard/issues/384).
95+
9196
### Version 1.25.1 (8/17/2015)
9297

9398
* Change `package.json` to use the new spdx license expression syntax.
@@ -127,10 +132,3 @@ Only the latest changes will be shown below, see the wiki log to view older vers
127132
* Add a basic white, non-library (not jQuery UI or Bootstrap) theme
128133
* This theme is to be used when neither jQuery UI css nor position utility is used as it positions the keyboard at the bottom of the browser windows using css.
129134
* See [the demo here](http://jsfiddle.net/Mottie/jsh0377k/).
130-
131-
### Version 1.24.1 (8/5/2015)
132-
133-
* Caret extension:
134-
* Avoid javascript errors when caret extension used without a preview window.
135-
* Caret is now removed when keyboard is hidden (when `userPreview` is `false`).
136-
* Thanks [@isfs](https://github.com/isfs); see [pull #376](https://github.com/Mottie/Keyboard/pull/376).

dist/js/jquery.keyboard.extension-caret.min.js

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/js/jquery.keyboard.min.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.

js/jquery.keyboard.extension-all.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ $.fn.addAutocomplete = function(options){
363363

364364
}));
365365

366-
/*! jQuery UI Virtual Keyboard Virtual Caret v1.1.0 (beta) *//*
367-
* for Keyboard v1.18+ only (8/12/2015)
366+
/*! jQuery UI Virtual Keyboard Virtual Caret v1.1.1 (beta) *//*
367+
* for Keyboard v1.18+ only (8/18/2015)
368368
* modified from https://github.com/component/textarea-caret-position
369369
*
370370
* By Rob Garrison (aka Mottie)

js/jquery.keyboard.extension-caret.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*! jQuery UI Virtual Keyboard Virtual Caret v1.1.0 (beta) *//*
2-
* for Keyboard v1.18+ only (8/12/2015)
1+
/*! jQuery UI Virtual Keyboard Virtual Caret v1.1.1 (beta) *//*
2+
* for Keyboard v1.18+ only (8/18/2015)
33
* modified from https://github.com/component/textarea-caret-position
44
*
55
* By Rob Garrison (aka Mottie)

js/jquery.keyboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery UI Virtual Keyboard v1.25.1 *//*
1+
/*! jQuery UI Virtual Keyboard v1.25.2 *//*
22
33
Author: Jeremy Satterfield
44
Modified: Rob Garrison (Mottie on github)
@@ -40,7 +40,7 @@ Setup/Usage:
4040
var $keyboard = $.keyboard = function(el, options){
4141
var base = this, o;
4242

43-
base.version = '1.25.1';
43+
base.version = '1.25.2';
4444

4545
// Access to jQuery and DOM versions of element
4646
base.$el = $(el);

keyboard.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "keyboard",
33
"title": "Keyboard",
4-
"version": "1.25.1",
4+
"version": "1.25.2",
55
"description": "Virtual Keyboard using jQuery UI",
66
"author": {
77
"name": "Jeremy Satterfield",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "virtual-keyboard",
33
"title": "Keyboard",
44
"description": "Virtual Keyboard using jQuery UI",
5-
"version": "1.25.1",
5+
"version": "1.25.2",
66
"author": {
77
"name": "Jeremy Satterfield",
88
"url": "https://github.com/jsatt"

0 commit comments

Comments
 (0)