Skip to content

Commit 39f6336

Browse files
committed
Update README.md
1 parent e0195e9 commit 39f6336

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ not simple. You can easily generate one via this link https://www.grc.com/passwo
900900
The authorization header should be `Bearer [token]`.
901901
902902
903-
#### Q. Directive Example
903+
#### Q. ***Directive Example***
904904
905905
```javascript
906906
.directive("enter", function(){
@@ -912,7 +912,7 @@ The authorization header should be `Bearer [token]`.
912912
});
913913
```
914914
915-
#### Q. IIFE Pattern used in AngularJS
915+
#### Q. ***IIFE Pattern used in AngularJS***
916916
917917
```html
918918
<!doctype html>
@@ -953,7 +953,7 @@ The authorization header should be `Bearer [token]`.
953953
</script>
954954
```
955955
956-
#### Q. Filter used in JavaScript part
956+
#### Q. ***Filter used in JavaScript part***
957957
958958
```html
959959
<body ng-app="app">
@@ -980,7 +980,7 @@ The authorization header should be `Bearer [token]`.
980980
</script>
981981
```
982982
983-
#### Q. Factory in AngularJS
983+
#### Q. ***Factory in AngularJS***
984984
985985
```html
986986
<div ng-controller="IndexCtrl as vm">
@@ -1036,7 +1036,7 @@ The authorization header should be `Bearer [token]`.
10361036
</script>
10371037
```
10381038
1039-
#### Q. Value in AngularJS
1039+
#### Q. ***Value in AngularJS***
10401040
10411041
```javascript
10421042
(function (angular) {
@@ -1065,7 +1065,7 @@ The authorization header should be `Bearer [token]`.
10651065
})(angular);
10661066
```
10671067
1068-
#### Q. Creating Sub-Module in AngularJS ( Extending Module in AngularJS )
1068+
#### Q. ***Creating Sub-Module in AngularJS ( Extending Module in AngularJS )***
10691069
10701070
```javascript
10711071
(function (angular) {
@@ -1111,7 +1111,7 @@ The authorization header should be `Bearer [token]`.
11111111
})(angular);
11121112
```
11131113
1114-
#### Q. config() vs run()
1114+
#### Q. ***config() vs run()***
11151115
11161116
```javascript
11171117
(function (angular) {
@@ -1130,7 +1130,7 @@ The authorization header should be `Bearer [token]`.
11301130
})(angular);
11311131
```
11321132
1133-
#### Q. Provider
1133+
#### Q. ***Provider***
11341134
11351135
```html
11361136
<div class="container">
@@ -1179,7 +1179,7 @@ The authorization header should be `Bearer [token]`.
11791179
</script>
11801180
```
11811181
1182-
#### Q. Provider with Constant
1182+
#### Q. ***Provider with Constant***
11831183
11841184
```html
11851185
<div ng-controller="IndexCtrl as vm">
@@ -1244,14 +1244,14 @@ The authorization header should be `Bearer [token]`.
12441244
</script>
12451245
```
12461246
1247-
#### Q. Component vs Module in AngularJS
1247+
#### Q. ***Component vs Module in AngularJS***
12481248
12491249
Components controls views (html). Also communicates with other components and services.
12501250
12511251
Modules consist of one or more components. They do not control any html. Modules declare which components can be used by components belonging to other modules, which classes will be injected by dependency injector and which component gets bootstrapped.
12521252
12531253
1254-
#### Q. AngularJS Components
1254+
#### Q. ***AngularJS Components***
12551255
12561256
```
12571257
> templateUrl

0 commit comments

Comments
 (0)