Bugfix/#115 console error in chronicle tab #117

Merged
Serraniel merged 2 commits from bugfix/#115-console-error-in-chronicle-tab into develop 2020-11-15 20:05:44 +01:00
Showing only changes of commit 07a3510b34 - Show all commits

View file

@ -41,7 +41,6 @@ function addCharCounter(textarea) {
updateCharCounter(textarea, charCounterSpan); updateCharCounter(textarea, charCounterSpan);
textarea.addEventListener('keyup', () => { textarea.addEventListener('keyup', () => {
console.log('TRIGGER')
updateCharCounter(textarea, charCounterSpan) updateCharCounter(textarea, charCounterSpan)
}); });
} }