diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-05-28 11:58:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 14:58:24 -0400 |
commit | 2958ec7e85c9a1182cd81728e3705948a2c39d71 (patch) | |
tree | 1cbe65159e7bd5b35114a54df6ac7f3935c4dbc9 /files/ko/web/api/eventsource/index.html | |
parent | 5e0ce5ef27d3e182d3385b61c6b0197727843b70 (diff) | |
download | translated-content-2958ec7e85c9a1182cd81728e3705948a2c39d71.tar.gz translated-content-2958ec7e85c9a1182cd81728e3705948a2c39d71.tar.bz2 translated-content-2958ec7e85c9a1182cd81728e3705948a2c39d71.zip |
replace some domxref macro calls with event macro calls (#1016)
Diffstat (limited to 'files/ko/web/api/eventsource/index.html')
-rw-r--r-- | files/ko/web/api/eventsource/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ko/web/api/eventsource/index.html b/files/ko/web/api/eventsource/index.html index 9d0df03b5d..f21e4bfa31 100644 --- a/files/ko/web/api/eventsource/index.html +++ b/files/ko/web/api/eventsource/index.html @@ -49,11 +49,11 @@ translation_of: Web/API/EventSource <dl> <dt>{{domxref("EventSource.onerror")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when an error occurs and the {{event("error")}} event is dispatched on an <code>EventSource</code> object.</dd> + <dd>Is an {{event("Event_handlers")}} called when an error occurs and the {{event("error")}} event is dispatched on an <code>EventSource</code> object.</dd> <dt>{{domxref("EventSource.onmessage")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when a {{event("message")}} event is received, that is when a message is coming from the source.</dd> + <dd>Is an {{event("Event_handlers")}} called when a {{event("message")}} event is received, that is when a message is coming from the source.</dd> <dt>{{domxref("EventSource.onopen")}}</dt> - <dd>Is an {{domxref("EventHandler")}} called when an {{event("open")}} event is received, that is when the connection was just opened.</dd> + <dd>Is an {{event("Event_handlers")}} called when an {{event("open")}} event is received, that is when the connection was just opened.</dd> </dl> <h2 id="Methods">Methods</h2> |