aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/domapplicationsregistry/getinstalled/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/domapplicationsregistry/getinstalled/index.html')
-rw-r--r--files/ja/web/api/domapplicationsregistry/getinstalled/index.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/files/ja/web/api/domapplicationsregistry/getinstalled/index.html b/files/ja/web/api/domapplicationsregistry/getinstalled/index.html
deleted file mode 100644
index 1bfc36d895..0000000000
--- a/files/ja/web/api/domapplicationsregistry/getinstalled/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-title: Apps.getInstalled
-slug: Web/API/DOMApplicationsRegistry/getInstalled
-tags:
- - API
- - Apps
- - Apps API
- - Firefox OS
- - Method
-translation_of: Archive/Marketplace/API/DOMApplicationsRegistry/getInstalled
----
-<p>{{ ApiRef() }}</p>
-<p>{{ non-standard_header() }}</p>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>この生成元からインストールされたアプリの一覧を取得します。例えば、これを Mozilla Marketplace を呼び出した場合、Mozilla Marketplace によってインストールされたアプリの一覧を取得できます。</p>
-<div class="note">
- <p><strong>注:</strong> ひとつの生成元 (オリジン) に複数のアプリをホストすることはできません。ひとつのドメインで複数のアプリを登録したい場合は、例えば <code>myapp.mydomain.com</code>、<code>otherapp.mydomain.com</code> のように、<a href="/ja/docs/Web/Apps/Adding_a_subdomain">アプリごとにサブドメインを用意してください</a>。</p>
-</div>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre><code>var request = window.navigator.mozApps.<code>getInstalled</code>()</code>;
-</pre>
-<h2 id="Parameters" name="Parameters">引数</h2>
-<p>ありません。</p>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush: js">var request = window.navigator.mozApps.getInstalled();
-request.onerror = function(e) {
-  alert("getInstalled の呼び出し時にエラーが発生しました: " + request.error.name);
-};
-request.onsuccess = function(e) {
-  alert("成功しました。アプリの数は " + request.result.length);
-  var appsRecord = request.result;
-};</pre>
-<p>呼び出し元スクリプトは、この例のように、戻り値オブジェクトの <code>onsuccess</code>/<code>onerror</code> コールバックプロパティを設定することが期待されます。呼び出しが成功した場合、戻り値オブジェクトの <code>result</code> プロパティに <a href="/ja/docs/Web/API/App"><code>App</code> オブジェクト</a> の配列が含まれています。この例では <code>request.result</code> に当たります。</p>
-<h2 id="Errors" name="Errors">エラー</h2>
-<p><code>DOMRequest.error</code> において文字列の <code>ERROR</code> が返ります。</p>
-<h2 id="Related_topics" name="Related_topics">関連情報</h2>
-<ul>
- <li><a href="/ja/docs/Web/API/App"><code>App</code> オブジェクト</a></li>
- <li><a href="/ja/docs/Web/Apps/JavaScript_API">Apps JavaScript API</a></li>
-</ul>