minor fixes

This commit is contained in:
Ilya Kantor 2019-07-26 23:21:49 +03:00
parent 689975093c
commit f6ff773033
24 changed files with 67 additions and 76 deletions

View file

@ -4,14 +4,14 @@ For given strings though, a simple `'=='` works too.
```js no-beautify
if(browser == 'Edge') {
alert("You've got the Edge!");
alert("У вас браузер Edge!");
} else if (browser == 'Chrome'
|| browser == 'Firefox'
|| browser == 'Safari'
|| browser == 'Opera') {
alert( 'Okay we support these browsers too' );
alert( 'Мы поддерживаем и эти браузерыo' );
} else {
alert( 'We hope that this page looks ok!' );
alert( 'Надеемся, что эта страница выглядит хорошо!' );
}
```