File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ __`app/index.html`:__
65
65
66
66
## What is the code doing?
67
67
68
- * `ng-app` directive:
68
+ ** `ng-app` directive:**
69
69
70
70
<html ng-app>
71
71
@@ -77,17 +77,17 @@ __`app/index.html`:__
77
77
This gives application developers the freedom to tell Angular if the entire html page or only a
78
78
portion of it should be treated as the Angular application.
79
79
80
- * AngularJS script tag:
80
+ ** AngularJS script tag:**
81
81
82
82
<script src="bower_components/angular/angular.js">
83
83
84
- This code downloads the `angular.js` script and registers a callback that will be executed by the
84
+ This code downloads the `angular.js` script which registers a callback that will be executed by the
85
85
browser when the containing HTML page is fully downloaded. When the callback is executed, Angular
86
86
looks for the {@link ng.directive:ngApp ngApp} directive. If
87
87
Angular finds the directive, it will bootstrap the application with the root of the application DOM
88
88
being the element on which the `ngApp` directive was defined.
89
89
90
- * Double-curly binding with an expression:
90
+ ** Double-curly binding with an expression:**
91
91
92
92
Nothing here {{'yet' + '!'}}
93
93
You can’t perform that action at this time.
0 commit comments