Update CompatibilityPage to match officially supported browsers
See https://github.com/vector-im/riot-web/pull/9177pull/21833/head
parent
5409db418c
commit
278b2ab633
|
@ -48,19 +48,13 @@ module.exports = React.createClass({
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
{ _t(
|
{ _t(
|
||||||
'Please install <chromeLink>Chrome</chromeLink> or <firefoxLink>Firefox</firefoxLink> ' +
|
'Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ' +
|
||||||
'for the best experience.',
|
'or <safariLink>Safari</safariLink> for the best experience.',
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
'chromeLink': (sub) => <a href="https://www.google.com/chrome">{sub}</a>,
|
'chromeLink': (sub) => <a href="https://www.google.com/chrome">{sub}</a>,
|
||||||
'firefoxLink': (sub) => <a href="https://getfirefox.com">{sub}</a>,
|
'firefoxLink': (sub) => <a href="https://getfirefox.com">{sub}</a>,
|
||||||
},
|
|
||||||
)}
|
|
||||||
{ _t('<safariLink>Safari</safariLink> and <operaLink>Opera</operaLink> work too.',
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
'safariLink': (sub) => <a href="http://apple.com/safari">{sub}</a>,
|
'safariLink': (sub) => <a href="http://apple.com/safari">{sub}</a>,
|
||||||
'operaLink': (sub) => <a href="http://opera.com">{sub}</a>,
|
|
||||||
},
|
},
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue