Skip to content

Commit

Permalink
Added white-space to the list of monitored textarea properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmoore committed Sep 9, 2014
1 parent dfbddf0 commit 7ad59f0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion autosize.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "autosize",
"title": "Autosize",
"description": "Automatically adjust textarea height based on user input.",
"version": "1.18.9",
"version": "1.18.10",
"dependencies": {
"jquery": ">=1.7"
},
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery-autosize",
"description": "Automatically adjust textarea height based on user input.",
"version": "1.18.9",
"version": "1.18.10",
"dependencies": {
"jquery": ">=1.7"
},
Expand Down
10 changes: 5 additions & 5 deletions jquery.autosize.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/*!
Autosize v1.18.9 - 2014-05-27
Automatically adjust textarea height based on user input.
(c) 2014 Jack Moore - http://www.jacklmoore.com/autosize
license: http://www.opensource.org/licenses/mit-license.php
Autosize 1.18.10
license: MIT
http://www.jacklmoore.com/autosize
*/
(function ($) {
var
Expand All @@ -27,7 +26,8 @@
'letterSpacing',
'textTransform',
'wordSpacing',
'textIndent'
'textIndent',
'whiteSpace'
],

// to keep track which textarea is being mirrored when adjust() is called.
Expand Down
9 changes: 4 additions & 5 deletions jquery.autosize.min.js

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "jquery-autosize",
"description": "Automatically adjust textarea height based on user input.",
"version": "1.18.9",
"version": "1.18.10",
"dependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/jackmoore/autosize.git"
"type": "git",
"url": "git://github.com/jackmoore/autosize.git"
},
"keywords": [
"form",
Expand All @@ -28,4 +28,4 @@
],
"homepage": "http://www.jacklmoore.com/autosize",
"main": "jquery.autosize.js"
}
}
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Small jQuery plugin to allow dynamic resizing of textarea height, so that it gro

## Changelog

### v1.18.10 - 2014/9/9
* Added white-space to the list of monitored textarea properties.

### v1.18.9 - 2014/5/27
* Minor change to fix potential IE8 negative width bug. Fixes #157 Fixes #158

Expand Down

0 comments on commit 7ad59f0

Please sign in to comment.