aboutsummaryrefslogtreecommitdiff
path: root/files/ru/mdn/structures
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:05 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:05 +0100
commitc058fa0fb22dc40ef0225b21a97578cddd0aaffa (patch)
treedf20f8b4c724b61cb9c34cdb450a7ac77d690bd0 /files/ru/mdn/structures
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.tar.gz
translated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.tar.bz2
translated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.zip
unslug ru: move
Diffstat (limited to 'files/ru/mdn/structures')
-rw-r--r--files/ru/mdn/structures/live_samples/simple_live_sample_demo/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/files/ru/mdn/structures/live_samples/simple_live_sample_demo/index.html b/files/ru/mdn/structures/live_samples/simple_live_sample_demo/index.html
deleted file mode 100644
index 393a20bc94..0000000000
--- a/files/ru/mdn/structures/live_samples/simple_live_sample_demo/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: A simple demo of a live code sample
-slug: MDN/Structures/Live_samples/Simple_live_sample_demo
-tags:
- - MDN Meta
- - Конструкции
- - Пример
-translation_of: MDN/Structures/Live_samples/Simple_live_sample_demo
----
-<div>{{MDNSidebar}}</div>
-
-<h2 id="Пример">Пример</h2>
-
-<p id="Simple_example_of_a_live_demo">Это очень простой пример показывающий вам, как сделать живой образец на MDN. Для большей информации смотрите <a href="/en-US/docs/MDN/Contribute/Structures/Live_samples">Live samples</a>.</p>
-
-<pre class="brush: html notranslate">&lt;form&gt;
- &lt;label&gt;Try me&lt;input type="text" name="name"&gt;&lt;/label&gt;
- &lt;input type="submit" value="go"&gt;
-&lt;/form&gt;</pre>
-
-<pre class="brush: css notranslate">form {
- border-radius: 10px;
- background: powderblue;
-}</pre>
-
-<pre class="brush: js notranslate">var f = document.querySelector('form');
-
-f.addEventListener('submit', function(ev) {
- ev.preventDefault();
- document.querySelectorAll('input')[1].value = 'sending';
-}, false);</pre>
-
-<p>{{ EmbedLiveSample('Пример', '', '', '') }}</p>
-
-<div class="blockIndicator note">
-<p>Примечание: На локализованных страницах значение первого параметра должно совпадать с ID заголовка в котором находится пример.</p>
-</div>