/whisper only makes sense in private chats

This commit is contained in:
Thibault Duplessis 2017-08-17 18:12:35 -05:00
parent 80f9552611
commit 998756be28

View file

@ -74,9 +74,9 @@ function renderInput(ctrl: Ctrl): VNode | undefined {
if (ctrl.opts.public && hasTeamUrl(txt)) alert("Please don't advertise teams in the chat.");
else ctrl.post(txt);
el.value = '';
el.classList.remove('whisper');
if (ctrl.opts.public) el.classList.remove('whisper');
}
} else el.classList.toggle('whisper', !!txt.match(whisperRegex));
} else if (!ctrl.opts.public) el.classList.toggle('whisper', !!txt.match(whisperRegex));
})
})
}