aboutsummaryrefslogtreecommitdiff
path: root/files/fi/archive/api
diff options
context:
space:
mode:
Diffstat (limited to 'files/fi/archive/api')
-rw-r--r--files/fi/archive/api/index.html13
-rw-r--r--files/fi/archive/api/navigator/index.html8
-rw-r--r--files/fi/archive/api/navigator/moznotification/index.html53
3 files changed, 74 insertions, 0 deletions
diff --git a/files/fi/archive/api/index.html b/files/fi/archive/api/index.html
new file mode 100644
index 0000000000..5a3f7413cb
--- /dev/null
+++ b/files/fi/archive/api/index.html
@@ -0,0 +1,13 @@
+---
+title: API
+slug: Archive/API
+tags:
+ - API
+ - Archive
+ - NeedsTranslation
+ - TopicStub
+translation_of: Archive/API
+---
+<p>Archived documentation about obsolete web standards APIs.</p>
+
+<p>{{SubpagesWithSummaries}}</p>
diff --git a/files/fi/archive/api/navigator/index.html b/files/fi/archive/api/navigator/index.html
new file mode 100644
index 0000000000..69d23d39fc
--- /dev/null
+++ b/files/fi/archive/api/navigator/index.html
@@ -0,0 +1,8 @@
+---
+title: Navigator
+slug: Archive/API/Navigator
+translation_of: Archive/API/Navigator
+---
+<p>In progress. Features that used to hang off the {{domxref("Navigator")}} interface, but have since been removed.</p>
+
+<p>{{SubpagesWithSummaries}}</p>
diff --git a/files/fi/archive/api/navigator/moznotification/index.html b/files/fi/archive/api/navigator/moznotification/index.html
new file mode 100644
index 0000000000..49e829c258
--- /dev/null
+++ b/files/fi/archive/api/navigator/moznotification/index.html
@@ -0,0 +1,53 @@
+---
+title: navigator.mozNotification
+slug: Archive/API/Navigator/mozNotification
+translation_of: Archive/API/Navigator/mozNotification
+---
+<p>{{ non-standard_header() }}</p>
+
+<p>Tarjoaa tuen {{ domxref("notification") }} -objektien luomiseksi, joita käytetään käyttäjän hälyttämiseksi näyttämällä työpöytäilmoituksia. Nykyisin niitä tuetaan vain Firefox Mobile -selaimessa. Katso esimerkkinä <a href="/en/DOM/Displaying_notifications" title="en/DOM/Displaying notifications">Ilmoitusten näyttäminen</a>.</p>
+
+<h2 id="Method_overview" name="Method_overview">Metodi-yhteenveto</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td><code>notification <a href="#createNotification()">createNotification</a>(in DOMString title, in DOMString description, in DOMString iconURL {{ optional_inline() }});</code></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Methods" name="Methods">Metodit</h2>
+
+<h3 id="createNotification()" name="createNotification()">createNotification()</h3>
+
+<p>Luo ja palauttaa ilmoitusobjektin, jota voidaan käyttää määritellyn viestin näyttämiseen valinnaisella verkko-osoitteella.</p>
+
+<pre class="eval">notification createNotification(
+ in DOMString title,
+ in DOMString description,
+ in DOMString iconURL {{ optional_inline() }}
+);
+</pre>
+
+<h6 id="Parameters" name="Parameters">Parametrit</h6>
+
+<dl>
+ <dt><code>title</code></dt>
+ <dd>Ilmoituksen otsikko.</dd>
+ <dt><code>description</code></dt>
+ <dd>Ilmoituksessa näytettävä teksti.</dd>
+ <dt><code>iconURL</code> {{ optional_inline() }}</dt>
+ <dd>Verkko-osoite ilmoituksessa näytettävän kuvan tunnistamiseksi.</dd>
+</dl>
+
+<h6 id="Return_value" name="Return_value">Paluuarvo</h6>
+
+<p>Uusi {{ domxref("notification") }} -objekti.</p>
+
+<h2 id="Katso_myös">Katso myös</h2>
+
+<ul>
+ <li>{{ domxref("notification") }}</li>
+ <li><a href="/en/DOM/Displaying_notifications" title="en/DOM/Displaying notifications">Ilmoitusten näyttäminen</a></li>
+</ul>