new mastodon feature: if you type "enshi" in that exact order, the tab closes itself and you're left to ruminate on what you were about to say
anyway, if you want to get people to stop posting uninformed takes about tech:
var composeTextElement;
window.addEventListener("load", (e) => {
composeTextElement = document.querySelectorAll("textarea.autosuggest-textarea__textarea")[0];
composeTextElement.addEventListener("input", (e) => {
if(composeTextElement.value.includes("enshi")) {
window.alert("Don't do that.");
}
});
});