Skip to content

Commit

Permalink
Resolved IE8 textarea issue when usePreview is false. Fixes #134.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed May 13, 2013
1 parent b372b70 commit 11fb691
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions README.markdown
Expand Up @@ -73,6 +73,11 @@ Moved to the Wiki Pages: [Home](https://github.com/Mottie/Keyboard/wiki/Home) |

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

### Version 1.17.7 (5/13/2013)

* Fixed the autocomplete extension to not close the keyboard when clicking within the autocomplete window, including the scroll bar. Fixes [issue #170](https://github.com/Mottie/Keyboard/issues/170).
* Fixed an issue in IE8 where a javascript error would occur in textarea when `usePreview` is `false`. Fixes [issue #134](https://github.com/Mottie/Keyboard/issues/134).

### Version 1.17.6 (5/10/2013)

* Fixed the check combo function to not cause an error when the keyboard is hidden. Fixes [issue #168](https://github.com/Mottie/Keyboard/issues/168).
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.keyboard.js
@@ -1,6 +1,6 @@
/*!
jQuery UI Virtual Keyboard
Version 1.17.6
Version 1.17.7
Author: Jeremy Satterfield
Modified: Rob Garrison (Mottie on github)
Expand Down Expand Up @@ -180,7 +180,7 @@ $.keyboard = function(el, options){
};

base.focusOn = function(){
if (base.$el.is(':visible')) {
if (o.usePreview && base.$el.is(':visible')) {
// caret position is always 0,0 in webkit; and nothing is focused at this point... odd
// save caret position in the input to transfer it to the preview
base.lastCaret = base.$el.caret();
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.keyboard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion keyboard.jquery.json
@@ -1,7 +1,7 @@
{
"name": "keyboard",
"title": "Keyboard",
"version": "1.17.6",
"version": "1.17.7",
"description": "Virtual Keyboard using jQuery UI",
"author": {
"name": "Jeremy Satterfield",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "keyboard",
"title": "Keyboard",
"description": "Virtual Keyboard using jQuery UI",
"version": "1.17.6",
"version": "1.17.7",
"author": {
"name": "Jeremy Satterfield",
"url": "https://github.com/jsatt"
Expand Down

0 comments on commit 11fb691

Please sign in to comment.