Only register onchange once the submit button has been pressed

This commit is contained in:
tleb 2019-10-15 10:23:15 +02:00
parent 13312e9879
commit 0011f4c7b0
1 changed files with 3 additions and 5 deletions

View File

@ -188,14 +188,12 @@
}
submit.addEventListener('click', () => {
if (!submitPressed) {
easymde.codemirror.on('change', checkMarkdownInput)
}
submitPressed = true
checkMarkdownInput()
})
easymde.codemirror.on('change', () => {
if (submitPressed) {
checkMarkdownInput()
}
})
})
</script>
</div>