Review comments

This commit is contained in:
Kegan Dougal 2017-06-08 14:45:59 +01:00
parent e3ac78bd28
commit f2efdf8a4f
4 changed files with 7 additions and 7 deletions

View file

@ -96,8 +96,8 @@ module.exports = React.createClass({
else {
joinText = (<span>
{_tJsx(
"Join as <a>voice</a> or <a>video</a>.",
[/<a>(.*?)<\/a>/, /<a>(.*?)<\/a>/],
"Join as <voiceText>voice</voiceText> or <videoText>video</videoText>.",
[/<voiceText>(.*?)<\/voiceText>/, /<videoText>(.*?)<\/videoText>/],
[
(sub) => <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'voice');}} href="#">{sub}</a>,
(sub) => <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'video');}} href="#">{sub}</a>,