aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/notification/dir
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api/notification/dir')
-rw-r--r--files/es/web/api/notification/dir/index.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/files/es/web/api/notification/dir/index.html b/files/es/web/api/notification/dir/index.html
new file mode 100644
index 0000000000..35f58dfca7
--- /dev/null
+++ b/files/es/web/api/notification/dir/index.html
@@ -0,0 +1,59 @@
+---
+title: Notification.dir
+slug: Web/API/notification/dir
+translation_of: Web/API/Notification/dir
+---
+<p>{{APIRef("Web Notifications")}}</p>
+
+<p>{{ SeeCompatTable() }}</p>
+
+<h2 id="Summary" name="Summary">Resumen</h2>
+
+<p><span style="line-height: 23.3333339691162px;">La propiedad dir indica la direccion para el lenguaje a usar </span><span style="line-height: 23.3333339691162px;">dentro de la notificación</span>.</p>
+
+<p>El valor por esta propiedad es envianda durante la instanciancion de <span style="line-height: 23.3333339691162px;">{{domxref("Notification")}} </span>mediante la definición de la propiedad dir el objeto de las opciones pasa al {{domxref ("Notificación")}} constructor.</p>
+
+<h2 id="Syntax" name="Syntax">Sintaxis</h2>
+
+<pre class="eval">var <em>direction</em> = <em>instanceOfNotification</em>.dir;
+</pre>
+
+<h3 id="Return_Value" name="Return_Value">Tipo</h3>
+
+<p>String <span style="line-height: 23.3333339691162px;">representa la actual direccion</span>. puede ser:  </p>
+
+<ul>
+ <li><code>auto</code>: La direccion es definida automaticamente.</li>
+ <li><code>ltr</code>: <span style="line-height: 23.3333339691162px;">El texto es desplegado de izquierda a derecha</span>.</li>
+ <li><code>rtl</code>: <span style="line-height: 23.3333339691162px;">El texto es desplegado de derecha a izquierda</span>.</li>
+</ul>
+
+<h2 id="Especificaciones">Especificaciones</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificacion</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentarios</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Web Notifications')}}</td>
+ <td>{{Spec2('Web Notifications')}}</td>
+ <td>Initial specification.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Navegadores_Compatibles">Navegadores Compatibles</h2>
+
+<p>{{Page("/en-US/docs/Web/API/Notification","Browser compatibility")}}</p>
+
+<h2 id="Ver_tambien">Ver tambien</h2>
+
+<ul>
+ <li>{{domxref("Notification")}}</li>
+ <li><a href="/en-US/docs/WebAPI/Using_Web_Notifications" title="/en-US/docs/WebAPI/Using_Web_Notifications">Using Web Notifications</a></li>
+</ul>