Skip to content

Commit

Permalink
Merged changes were discarded when building new dist files. Merged ja…
Browse files Browse the repository at this point in the history
…ckmoore#255, Fixes jackmoore#257 for real this time.
  • Loading branch information
jackmoore committed Sep 14, 2015
1 parent 884ea54 commit 037f61b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 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.12 - 2015-09-14
* Merged changes were discarded when building new dist files. Merged #255, Fixes #257 for real this time.

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

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.11
Autosize 3.0.12
license: MIT
http://www.jacklmoore.com/autosize
*/
Expand All @@ -18,7 +18,7 @@
})(this, function (exports, module) {
'use strict';

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

return {
Expand Down
4 changes: 2 additions & 2 deletions 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.11",
"version": "3.0.12",
"keywords": [
"textarea",
"form",
Expand Down
2 changes: 1 addition & 1 deletion src/autosize.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var set = Set ? new Set() : (()=>{
const set = (typeof Set === "function") ? new Set() : (function () {
const list = [];

return {
Expand Down

0 comments on commit 037f61b

Please sign in to comment.