diff options
author | Francesco <firefelix@gmail.com> | 2016-09-14 15:25:28 +0300 |
---|---|---|
committer | Francesco <firefelix@gmail.com> | 2016-09-14 15:25:28 +0300 |
commit | 2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1 (patch) | |
tree | c8046455a3087537dc29197b86cec40bdd3debaa | |
parent | 623aecec665ca868c8bfb69fe40a4618ec524258 (diff) | |
download | react-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.zip react-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.tar.gz react-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.tar.bz2 |
fix lint errors
-rw-r--r-- | src/TextareaAutosize.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TextareaAutosize.js b/src/TextareaAutosize.js index f6e2c1d..b96bb63 100644 --- a/src/TextareaAutosize.js +++ b/src/TextareaAutosize.js @@ -11,7 +11,8 @@ export const Props = { onResize: t.maybe(t.Function) }; -/** A light replacement for built-in textarea component which automaticaly adjusts its height to match the content +/** A light replacement for built-in textarea component + * which automaticaly adjusts its height to match the content * @param onResize - called whenever the textarea resizes */ @props(Props, { strict: false }) |