diff options
author | Abel Beak <abel@teamuni.net> | 2021-05-23 22:07:33 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 22:07:33 +0900 |
commit | 23fba14ad2dcd0ca4194e379c0bd25f25369005b (patch) | |
tree | 01a7cf7a0c59db7c1edc9ee79bea86b0ba5a646b /files | |
parent | f3e635b190089d0ccf8cdc07cdd3bab6f78d61c7 (diff) | |
download | translated-content-23fba14ad2dcd0ca4194e379c0bd25f25369005b.tar.gz translated-content-23fba14ad2dcd0ca4194e379c0bd25f25369005b.tar.bz2 translated-content-23fba14ad2dcd0ca4194e379c0bd25f25369005b.zip |
[FIX] the example source is inverted (#787)
xpath location: /html/body/div/div[1]/main/article/div[11]/pre
<pre class="brush: js notranslate" dir="rtl"> Change to <pre class="brush: js notranslate">
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/learn/javascript/first_steps/what_is_javascript/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html index c980bbf699..614ab821e5 100644 --- a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html +++ b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html @@ -217,7 +217,7 @@ function updateName() { <p>그러고 아래의 자바스크립트 코드를 <script></script>사이에 넣음으로서 페이지 상에서 동작이 가능하게끔 할 수 있습니다.( 위 코드에서 "// JavaScript goes here" 부분에 아래의 코드를 추가하면 됩니다.)</p> -<pre class="brush: js notranslate" dir="rtl"><code>document.addEventListener("DOMContentLoaded", function() { +<pre class="brush: js notranslate"><code>document.addEventListener("DOMContentLoaded", function() { function createParagraph() { let para = document.createElement('p'); para.textContent = 'You clicked the button!'; |