aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKwang Hun Choi <mm9139@naver.com>2021-11-29 11:43:07 +0900
committerKyle <mkitigy@gmail.com>2021-12-27 08:00:55 +0900
commitc65ac038888b70cf2d28a8b177fe63db83bd7aee (patch)
tree134c8e1287a54eaa58b1e6fd917939a8d9501583
parent437f1c32b130d597b71785f71ccc3c083fda496c (diff)
downloadtranslated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.tar.gz
translated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.tar.bz2
translated-content-c65ac038888b70cf2d28a8b177fe63db83bd7aee.zip
Update index.html
add defer for external script.js
-rw-r--r--files/ko/learn/javascript/first_steps/what_is_javascript/index.html2
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 078a5010a0..2c18af1301 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
@@ -255,7 +255,7 @@ function updateName() {
<li>먼저, HTML 파일이 있는 디렉토리에 <code>script.js</code>라는 새로운 파일을 만듭니다. 파일의 확장자가 .js이면 그 파일이 자바스크립트로 이루어져 있음을 뜻합니다.</li>
<li>아래의 태그를 HTML 코드에 복사 후 저장합니다.</li>
<li>
- <pre class="syntaxbox notranslate">&lt;script src="script.js"&gt;&lt;/script&gt;</pre>
+ <pre class="syntaxbox notranslate">&lt;script src="script.js" defer&gt;&lt;/script&gt;</pre>
</li>
<li>script.js 의 내용을 다음과 같이 바꿉니다.
<pre class="notranslate"><code>function createParagraph() {