diff options
author | alattalatta <urty5656@gmail.com> | 2021-07-26 22:51:29 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 22:51:29 +0900 |
commit | 91bca910871ea185e7970937a9739dbbf3d223a9 (patch) | |
tree | fa4ca739b9600da9c3135a70a834ebd3cd9d94fa /files/ko/web/javascript/reference/classes | |
parent | 170ee25aa30bde456c637f08f0315763e21193cd (diff) | |
download | translated-content-91bca910871ea185e7970937a9739dbbf3d223a9.tar.gz translated-content-91bca910871ea185e7970937a9739dbbf3d223a9.tar.bz2 translated-content-91bca910871ea185e7970937a9739dbbf3d223a9.zip |
Remove hidden/noinclude from JS docs (#1583)
Diffstat (limited to 'files/ko/web/javascript/reference/classes')
3 files changed, 0 insertions, 12 deletions
diff --git a/files/ko/web/javascript/reference/classes/extends/index.html b/files/ko/web/javascript/reference/classes/extends/index.html index e1ae2eac31..0ae81a9964 100644 --- a/files/ko/web/javascript/reference/classes/extends/index.html +++ b/files/ko/web/javascript/reference/classes/extends/index.html @@ -13,10 +13,6 @@ translation_of: Web/JavaScript/Reference/Classes/extends <p>{{EmbedInteractiveExample("pages/js/classes-extends.html", "taller")}}</p> -<div class="hidden"> -<p>The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</p> -</div> - <h2 id="구문">구문</h2> <pre class="syntaxbox">class ChildClass extends ParentClass { ... }</pre> diff --git a/files/ko/web/javascript/reference/classes/public_class_fields/index.html b/files/ko/web/javascript/reference/classes/public_class_fields/index.html index 2431a21cd9..381afe4873 100644 --- a/files/ko/web/javascript/reference/classes/public_class_fields/index.html +++ b/files/ko/web/javascript/reference/classes/public_class_fields/index.html @@ -144,10 +144,6 @@ console.log(sub.subInstanceField) <p>{{EmbedInteractiveExample("pages/js/classes-static.html")}}</p> -<div class="hidden"> -<p>The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</p> -</div> - <p>The static methods are added to the class constructor with {{jsxref("Global_Objects/Object/defineProperty", "Object.defineProperty()")}} at class evaluation time. These methods are writable, non-enumerable, and configurable.</p> <h3 id="Public_instance_methods">Public instance methods</h3> diff --git a/files/ko/web/javascript/reference/classes/static/index.html b/files/ko/web/javascript/reference/classes/static/index.html index 02701e550d..4c90a99077 100644 --- a/files/ko/web/javascript/reference/classes/static/index.html +++ b/files/ko/web/javascript/reference/classes/static/index.html @@ -15,10 +15,6 @@ translation_of: Web/JavaScript/Reference/Classes/static <p>{{EmbedInteractiveExample("pages/js/classes-static.html")}}</p> -<div class="hidden"> -<p>The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</p> -</div> - <h2 id="문법">문법</h2> <pre class="syntaxbox">static methodName() { ... }</pre> |