From 980fe00a74a9ad013b945755415ace2e5429c3c2 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Oct 2021 02:31:24 +0300 Subject: [RU] Remove notranslate (#2874) --- files/ru/web/api/pointer_events/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'files/ru/web/api/pointer_events') diff --git a/files/ru/web/api/pointer_events/index.html b/files/ru/web/api/pointer_events/index.html index 1d74bcf4aa..c6a57b7a95 100644 --- a/files/ru/web/api/pointer_events/index.html +++ b/files/ru/web/api/pointer_events/index.html @@ -160,7 +160,7 @@ translation_of: Web/API/Pointer_events

В этом примере определённому элементу назначаются обработчики каждого типа события.

-
<html>
+
<html>
   <script>
     function over_handler(event) { }
     function enter_handler(event) { }
@@ -198,7 +198,7 @@ translation_of: Web/API/Pointer_events
 
 

Этот пример демонстрирует доступ ко всем свойствам события касания.

-
<html>
+
<html>
   <script>
     var id = -1;
 
@@ -345,7 +345,7 @@ translation_of: Web/API/Pointer_events
 
 

The following example shows pointer capture being set on an element.

-
<html>
+
<html>
 <script>
   function downHandler(ev) {
     let el = document.getElementById("target");
@@ -366,7 +366,7 @@ translation_of: Web/API/Pointer_events
 
 

The following example shows a pointer capture being released (when a {{event("pointercancel")}} event occurs. The browser does this automatically when a {{event("pointerup")}} or {{event("pointercancel")}} event occurs.

-
<html>
+
<html>
   <script>
     function downHandler(ev) {
       let el = document.getElementById("target");
@@ -401,7 +401,7 @@ translation_of: Web/API/Pointer_events
 
 

In the following example, the browser's default touch behavior is disabled for the div element.

-
<html>
+
<html>
   <body>
     <div style="touch-action:none;">Can't touch this ... </div>
   </body>
@@ -410,14 +410,14 @@ translation_of: Web/API/Pointer_events
 
 

In the following example, default touch behavior is disabled for some button elements.

-
button#tiny {
+
button#tiny {
   touch-action: none;
 }
 

In the following example, when the target element is touched, it will only pan in the horizontal direction.

-
#target {
+
#target {
   touch-action: pan-x;
 }
 
-- cgit v1.2.3-54-g00ecf