2018-09-01 20:42:53 +00:00
|
|
|
function autosize () {
|
|
|
|
const el = this
|
|
|
|
el.style.height = 'auto'
|
|
|
|
el.style.height = `${el.scrollHeight}px`
|
2018-08-30 20:47:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 20:42:53 +00:00
|
|
|
const articleContent = document.querySelector('#content')
|
|
|
|
autosize.bind(articleContent)()
|
|
|
|
articleContent.addEventListener('keyup', autosize)
|