Skip to content

Commit

Permalink
Fixed regression from 3.0.10 that caused an error with ES5 browsers. …
Browse files Browse the repository at this point in the history
…Merged jackmoore#255, Fixes jackmoore#257
  • Loading branch information
jackmoore committed Sep 14, 2015
1 parent ec1c034 commit 884ea54
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

##### v.3.0.11 - 2015-09-14
* Fixed regression from 3.0.10 that caused an error with ES5 browsers. Merged #255, Fixes #257.

##### v.3.0.10 - 2015-09-10
* Removed data attribute as a way of tracking which elements autosize has been assigned to. fixes #254, fixes #200.

Expand Down
4 changes: 2 additions & 2 deletions dist/autosize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
Autosize 3.0.10
Autosize 3.0.11
license: MIT
http://www.jacklmoore.com/autosize
*/
Expand All @@ -18,7 +18,7 @@
})(this, function (exports, module) {
'use strict';

var set = (typeof Set != "undefined") ? new Set() : (function () {
var set = Set ? new Set() : (function () {
var list = [];

return {
Expand Down
2 changes: 1 addition & 1 deletion dist/autosize.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "autosize",
"description": "Autosize is a small, stand-alone script to automatically adjust textarea height to fit text.",
"version": "3.0.10",
"version": "3.0.11",
"keywords": [
"textarea",
"form",
Expand Down

0 comments on commit 884ea54

Please sign in to comment.