Fixed clickable command examples.
This commit is contained in:
parent
3deb2e2d52
commit
7aeb4e9d0e
|
|
@ -259,7 +259,7 @@ class chatPostprocessor{
|
||||||
link.textContent = wordObj.command;
|
link.textContent = wordObj.command;
|
||||||
|
|
||||||
//Add chatbox functionality
|
//Add chatbox functionality
|
||||||
link.addEventListener('click', () => {this.client.chatBox.commandPreprocessor.preprocess(wordObj.command)});
|
link.addEventListener('click', () => {this.client.chatBox.transmit(wordObj.command)});
|
||||||
|
|
||||||
//We don't have to worry about injecting this into whitespace since there shouldn't be any here.
|
//We don't have to worry about injecting this into whitespace since there shouldn't be any here.
|
||||||
injectionArray.push(link);
|
injectionArray.push(link);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue