aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-09-11 19:55:07 +0300
committerGitHub <noreply@github.com>2021-09-11 19:55:07 +0300
commitd5034f32a14f732d8745bff8e3cef9067c09fe20 (patch)
treea7b5a0d089f975ca8316e7c19bb311c0e03a42e5 /files
parent710fa0fca853831ec2ef87b66b932d3927ad0c7f (diff)
downloadtranslated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.tar.gz
translated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.tar.bz2
translated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.zip
RU: Fix Live sample on Strings page (#2426)
Diffstat (limited to 'files')
-rw-r--r--files/ru/learn/javascript/first_steps/strings/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/learn/javascript/first_steps/strings/index.html b/files/ru/learn/javascript/first_steps/strings/index.html
index aad1044a22..9acead263a 100644
--- a/files/ru/learn/javascript/first_steps/strings/index.html
+++ b/files/ru/learn/javascript/first_steps/strings/index.html
@@ -121,7 +121,7 @@ button.onclick = function() {
alert('Hello ' + name + ', nice to see you!');
}</pre>
-<p>{{ EmbedLiveSample('Concatenation_in_context', '100%', 50) }}</p>
+<p>{{ EmbedLiveSample('Конкатенация_строк_в_контексте', '100%', 50, "", "", "hide-codepen-jsfiddle") }}</p>
<p>Здесь мы используем функцию {{domxref ("Window.prompt ()", "Window.prompt ()")}} в строке 4, которая просит пользователя ответить на вопрос через всплывающее диалоговое окно, а затем сохраняет введённый текст внутри заданной переменной — в этом случае <code><strong>name</strong></code>. Затем мы используем функцию {{domxref ("Window.alert ()", "Window.alert ()")}} в строке 5 для отображения другого всплывающего окна, содержащего строку, которую мы собрали из двух строковых литералов и переменной <code>name</code>.</p>