Plume/static/js/autoExpand.js
2018-10-30 18:16:24 +01:00

7 lines
306 B
JavaScript

const articleContent = document.querySelector('#plume-editor')
const offset = articleContent.offsetHeight - articleContent.clientHeight
articleContent.addEventListener('keydown', () => {
articleContent.style.height = 'auto'
articleContent.style.height = `${articleContent.scrollHeight - offset}px`
})