mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
Only register onchange once the submit button has been pressed
This commit is contained in:
parent
13312e9879
commit
0011f4c7b0
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user