@@ -25,7 +25,7 @@ initialization.
25
25
</pre>
26
26
27
27
* Place the `script` tag at the buttom of the page. Placing script tags at the end of the page
28
- impreves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
28
+ improves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
29
29
script. You can get the latest bits from {@link http://code.angularjs.org}. Please don't link
30
30
your production code to this URL, as it will expose a security hole on your site. For
31
31
experimental development linking to our site is fine.
@@ -38,7 +38,7 @@ initialization.
38
38
39
39
<html ng-app>
40
40
41
- * If you chose to use the old style directive syntax `ng:` then include xml-namespace in `html`
41
+ * If you choose to use the old style directive syntax `ng:` then include xml-namespace in `html`
42
42
to make IE happy. (This is here for historical resons, and we no longer recomend use of
43
43
`ng:`.)
44
44
@@ -48,9 +48,9 @@ initialization.
48
48
49
49
# Automatic Initialization
50
50
51
- Angular initializes automatically upon `DOMContentLoaded` event, at which point angular looks for
51
+ Angular initializes automatically upon `DOMContentLoaded` event, at which point Angular looks for
52
52
the {@link api/ng.directive:ngApp `ng-app`} directive which
53
- designates your application root. If {@link
53
+ designates your application root. If the {@link
54
54
api/ng.directive:ngApp `ng-app`} directive is found then Angular
55
55
will:
56
56
78
78
79
79
If you need to have more control over the initialization process, you can use a manual
80
80
bootstrapping method instead. Examples of when you'd need to do this include using script loaders
81
- or the need to perform an operation before the Angular compiles a page.
81
+ or the need to perform an operation before Angular compiles a page.
82
82
83
83
84
84
Here is an example of manually initializing Angular. The example is equivalent to using the {@link
@@ -99,7 +99,7 @@ api/ng.directive:ngApp ng-app} directive.
99
99
</html>
100
100
</pre>
101
101
102
- This sequence that your code should follow:
102
+ This is the sequence that your code should follow:
103
103
104
104
1. After the page and all of the code is loaded, find the root of the HTML template, which is
105
105
typically the root of the document.
0 commit comments