From 613b0809caedeb6c38011c762399d2f55a700f60 Mon Sep 17 00:00:00 2001 From: nurinamu Date: Tue, 16 Apr 2013 20:55:41 +0900 Subject: [PATCH 1/3] #3 first commit. --- docs/content/guide/directive.ngdoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 7e17f6c99f37..39de53e43c98 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -2,6 +2,7 @@ @name Directives @description +Directives는 HTML의 새로운 속임수를 알려주는 방법입니다. Directives are a way to teach HTML new tricks. During DOM compilation directives are matched against the HTML and executed. This allows directives to register behavior, or transform the DOM. From 53e6d0219e0fd569193cb8e7f47d571e262dda29 Mon Sep 17 00:00:00 2001 From: nurinamu Date: Tue, 16 Apr 2013 21:01:25 +0900 Subject: [PATCH 2/3] =?UTF-8?q?#7=20directives=20=EB=91=90=EB=B2=88?= =?UTF-8?q?=EC=A7=B8=EC=9E=85=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/content/guide/directive.ngdoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 39de53e43c98..aaf2517a3c89 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -2,7 +2,7 @@ @name Directives @description -Directives는 HTML의 새로운 속임수를 알려주는 방법입니다. +Directives는 HTML의 새로운 속임수를 알려주는 방법입니다. Directives are a way to teach HTML new tricks. During DOM compilation directives are matched against the HTML and executed. This allows directives to register behavior, or transform the DOM. @@ -10,6 +10,7 @@ Angular comes with a built in set of directives which are useful for building we can be extended such that HTML can be turned into a declarative domain specific language (DSL). # Invoking directives from HTML +# HTML에서 Directives를 호출하기. Directives have camel cased names such as `ngBind`. The directive can be invoked by translating the camel case name into snake case with these special characters `:`, `-`, or `_`. Optionally the From 688cac442c3d27a1e5cf28b9f37870cbc4937b96 Mon Sep 17 00:00:00 2001 From: nurinamu Date: Tue, 16 Apr 2013 21:02:56 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=9E=85?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/content/guide/directive.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index aaf2517a3c89..fb93ad75b249 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -10,7 +10,7 @@ Angular comes with a built in set of directives which are useful for building we can be extended such that HTML can be turned into a declarative domain specific language (DSL). # Invoking directives from HTML -# HTML에서 Directives를 호출하기. +# HTML에서 Directives를 호출하기? Directives have camel cased names such as `ngBind`. The directive can be invoked by translating the camel case name into snake case with these special characters `:`, `-`, or `_`. Optionally the