This is what I think
MD Test
Comment error eliminated with the following code:
// Fix: 'The comment text can't be blank.' Error
if ($('.uvField-comment textarea').length > 0){
simplemde.codemirror.on('blur', function(){
$('.uvField-comment textarea').val(simplemde.value());
});
}
-
AdminDan Potts
(Admin, Dan Co.)
commented
Nice one! It's missing the textarea clearing though.
Check it out:
```
// Clear the Comment Textarea
simplemde.value('');
```