typo fixed
This commit is contained in:
parent
da4da31e6c
commit
b8353f78ce
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ class MessagesArea extends HTMLElement {
|
||||||
const actionButton = document.createElement('button');
|
const actionButton = document.createElement('button');
|
||||||
actionButton.textContent = 'Send';
|
actionButton.textContent = 'Send';
|
||||||
actionButton.addEventListener('click', () => {
|
actionButton.addEventListener('click', () => {
|
||||||
alert(this.fullText);
|
alert(this.fullTextHTML);
|
||||||
});
|
});
|
||||||
actionButtons.appendChild(actionButton);
|
actionButtons.appendChild(actionButton);
|
||||||
this.messages.appendChild(actionButtons);
|
this.messages.appendChild(actionButtons);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue