re-enable blur

This commit is contained in:
LenAnderson 2024-04-25 20:33:42 -04:00
parent 8afc480fad
commit 26104bf738
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ export class SlashCommandAutoComplete {
textarea.addEventListener('keydown', (evt)=>this.handleKeyDown(evt));
textarea.addEventListener('click', ()=>this.isActive ? this.show() : null);
textarea.addEventListener('selectionchange', ()=>this.show());
// textarea.addEventListener('blur', ()=>this.hide());
textarea.addEventListener('blur', ()=>this.hide());
if (isFloating) {
textarea.addEventListener('scroll', ()=>this.updateFloatingPositionDebounced());
}