aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/web_components
diff options
context:
space:
mode:
authorKyohei Hamaguchi <tnzk.marge@gmail.com>2021-07-04 02:16:01 +0900
committerGitHub <noreply@github.com>2021-07-04 02:16:01 +0900
commit386dea478e66a4d753c9adc9f10ecc132351692d (patch)
tree8b5f6adc4fcf32cf993d44b78ead13053dd51d69 /files/ja/web/web_components
parent554f1bbb0574d8e8a14708f68f5807c74381e8dd (diff)
downloadtranslated-content-386dea478e66a4d753c9adc9f10ecc132351692d.tar.gz
translated-content-386dea478e66a4d753c9adc9f10ecc132351692d.tar.bz2
translated-content-386dea478e66a4d753c9adc9f10ecc132351692d.zip
connectedCallback の訳を修正しました。 (#1335)
Diffstat (limited to 'files/ja/web/web_components')
-rw-r--r--files/ja/web/web_components/using_custom_elements/index.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/files/ja/web/web_components/using_custom_elements/index.html b/files/ja/web/web_components/using_custom_elements/index.html
index 91e62cb41c..359593564c 100644
--- a/files/ja/web/web_components/using_custom_elements/index.html
+++ b/files/ja/web/web_components/using_custom_elements/index.html
@@ -204,8 +204,7 @@ shadow.appendChild(linkElem);
<p>カスタム要素のクラス定義内にいくつかの異なるコールバックを定義できます。これらのコールバックは、要素のライフサイクルのさまざまな時点で起動します。</p>
<ul>
- <li><code>connectedCallback</code>: 呼び出されるたびに、カスタム要素がドキュメントに接続された要素に追加されます。これは、ノードが移動されるたびに発生し、要素のコンテンツが完全に解析される前に発生する場合があります。
-
+ <li><code>connectedCallback</code>: カスタム要素がドキュメントに接続された要素に追加されるたびに呼び出されます。これは、ノードが移動されるたびに発生し、要素のコンテンツが完全に解析される前に発生する場合があります。
<div class="note">
<p><strong>注</strong>: エレメントが接続されなくなったら<code>connectedCallback</code> を呼び出すことができます,  {{domxref("Node.isConnected")}} を使用して確認してください.</p>
</div>