You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be done by looking for the following code in config.js (chat/js/config.js);
// Defines the list of allowed BBCodes:bbCodeTags:['b','i','u','quote','code','color','url','img'],
and amend to the following;
// Defines the list of allowed BBCodes:bbCodeTags:['b','i','u','s','quote','code','color','url','img'],
Adding a button to the BBCode toolbar
Adding a button is takes a bit more, in loggedIn.html (chat/lib/template/loggedIn.html) find the block towards the bottom with id's like bbCodeBold and bbCodeItalic and add this line of code where you want the button;
Many forums support strikethrough, yet AJAX chat does not.
[s]Example[/s]
Appears as
ExampleFrom my view it should be simple, do the same thing with
[b]
,[i]
, and[u]
, but with<s></s>
instead.The text was updated successfully, but these errors were encountered: