move click listener up

This commit is contained in:
LenAnderson 2023-12-23 23:26:00 +00:00
parent 3722bd25d4
commit 3d5dc18d0c
1 changed files with 5 additions and 5 deletions

View File

@ -77,6 +77,11 @@ export class QuickReply {
menu.show(evt);
}
});
root.addEventListener('click', ()=>{
if (this.message?.length > 0 && this.onExecute) {
this.onExecute(this);
}
});
const lbl = document.createElement('div'); {
this.domLabel = lbl;
lbl.classList.add('qr--button-label');
@ -95,11 +100,6 @@ export class QuickReply {
});
root.append(expander);
}
root.addEventListener('click', ()=>{
if (this.message?.length > 0 && this.onExecute) {
this.onExecute(this);
}
});
}
}
return this.dom;