Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8528781

Browse files
danrbergmancaitp
danrbergman
authored andcommitted
docs(guide/module): make the use of ng-app explicit in example
Helpful for people new to Angular to see the ng-app declaration in context with the expression example. This will help illustrate the "Important thing to notice" point which follows: "The reference to myApp module in <html ng-app="myApp">. This is what bootstraps the app using your module." Closes #8673
1 parent 98f6037 commit 8528781

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/content/guide/module.ngdoc

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ should be bootstrapped. There are several advantages to this approach:
2626

2727
I'm in a hurry. How do I get a Hello World module working?
2828

29-
<example module='myApp'>
29+
<example ng-app-included="true">
3030
<file name="index.html">
31-
<div>
32-
{{ 'World' | greet }}
31+
<div ng-app="myApp">
32+
<div>
33+
{{ 'World' | greet }}
34+
</div>
3335
</div>
3436
</file>
3537

0 commit comments

Comments
 (0)