aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-05 11:36:15 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-12 10:43:00 +0900
commit6ded96366d70b0f2b6f56d88233745764b27dc5b (patch)
treeccec6faf387758309292b3320186e7a61cdba715
parent144fdafc4b6deefb9084623038a9c0781794f619 (diff)
downloadtranslated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.tar.gz
translated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.tar.bz2
translated-content-6ded96366d70b0f2b6f56d88233745764b27dc5b.zip
Update index.md
-rw-r--r--files/ja/web/api/htmlinputelement/webkitdirectory/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/api/htmlinputelement/webkitdirectory/index.md b/files/ja/web/api/htmlinputelement/webkitdirectory/index.md
index 92ecb254e4..d028438011 100644
--- a/files/ja/web/api/htmlinputelement/webkitdirectory/index.md
+++ b/files/ja/web/api/htmlinputelement/webkitdirectory/index.md
@@ -69,14 +69,14 @@ translation_of: Web/API/HTMLInputElement/webkitdirectory
この例では、ユーザーが 1 つまたは複数のディレクトリーを選択することができるディレクトリーピッカーが表示されます。 {{domxref("HTMLElement/change_event", "change")}} イベントが発生すると、選択されたディレクトリー階層ないのすべてのファイルを含むリストが生成され、表示されます。
-### HTML コンテンツ
+### HTML content
```html
<input type="file" id="filepicker" name="fileList" webkitdirectory multiple />
<ul id="listing"></ul>
```
-### JavaScript コンテンツ
+### JavaScript content
```js
document.getElementById("filepicker").addEventListener("change", function(event) {