aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc
index 9f6464b2..c32c2c1a 100644
--- a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc
+++ b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc
@@ -2,14 +2,14 @@
@name Developer Guide: Initializing Angular: Manual Initialization
@description
-In the vast majority of cases you'll want to let Angular handle initialization automatically.
-If, however, you need to delay Angular from managing the page right after the DOMContentLoaded
+In the vast majority of cases you'll want to let Angular handle initialization automatically.
+If, however, you need to delay Angular from managing the page right after the DOMContentLoaded
event fires, you'll need to control this initialization manually.
-To initialize Angular -- after you've done your own special-purpose initialization -- just call
+To initialize Angular -- after you've done your own special-purpose initialization -- just call
the {@link api/angular.bootstrap bootstrap()} function with the HTML container node that you want
-Angular to manage. In automatic initialization you'd do this by adding the `ng-app` attribute to
-the same node. Now, you won't use `ng-app` anywhere in your document.
+Angular to manage. In automatic initialization you'd do this by adding the `ngApp` attribute to
+the same node. Now, you won't use `ngApp` anywhere in your document.
To show the contrast of manual vs. automatic initialization, this automatic method: