This commit is contained in:
Ilya Kantor 2015-03-19 22:52:30 +03:00
parent bf85f46cf9
commit 087875b29b

View file

@ -260,9 +260,9 @@ function showWarning(width, height, title, contents) {
```js
function showWarning(width, height, title, contents) {
if (width !== undefined) width = 200;
if (height !== undefined) height = 100;
if (title !== undefined) title = "Предупреждение";
if (width === undefined) width = 200;
if (height === undefined) height = 100;
if (title === undefined) title = "Предупреждение";
//...
}