Plume/static/js/autoExpand.js
2018-09-01 21:42:53 +01:00

10 lines
255 B
JavaScript

function autosize () {
const el = this
el.style.height = 'auto'
el.style.height = `${el.scrollHeight}px`
}
const articleContent = document.querySelector('#content')
autosize.bind(articleContent)()
articleContent.addEventListener('keyup', autosize)